From 9316e29f61dfefbe3a5d42f9bafd90d6b7a5f834 Mon Sep 17 00:00:00 2001 From: hanhanW Date: Wed, 7 Aug 2024 09:55:32 -0700 Subject: [PATCH] fix python lint issue Signed-off-by: hanhanW --- tests/e2e/matmul/generate_e2e_matmul_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/matmul/generate_e2e_matmul_tests.py b/tests/e2e/matmul/generate_e2e_matmul_tests.py index 7ae83a7c56878..c57af2bd95160 100644 --- a/tests/e2e/matmul/generate_e2e_matmul_tests.py +++ b/tests/e2e/matmul/generate_e2e_matmul_tests.py @@ -311,7 +311,7 @@ def get_rocm_test_compilation_infos( # match the requested one. # Extracts the input type from strings. The naming convention is # [output_type]_MxNxK_[input_type]. - input_type = schedule.intrinsic.split('_')[-1] + input_type = schedule.intrinsic.split("_")[-1] if lhs_rhs_type.value.upper() != input_type: continue