Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions csrc/ck_tile_gemm_moe_2stages/gen_instances.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: MIT
# Copyright (C) 2024-2025, Advanced Micro Devices, Inc. All rights reserved.
# Copyright (C) 2024-2026, Advanced Micro Devices, Inc. All rights reserved.
import os
import argparse
from pathlib import Path
Expand Down Expand Up @@ -229,7 +229,7 @@ def fill_template(name, a_type, b_type, acc_type, c_type):
name=name, dtypes=f"{a_type}, {b_type}, {acc_type}, {c_type}"
)
if "fp4" in b_type:
body = "#if defined(__gfx950__)\n" + body + "\n#endif\n"
body = "#ifndef __gfx942__\n" + body + "\n#endif\n"
Path(
os.path.join(
self.instances_path,
Expand Down