From 5aa891a78ac2aa970aff1d3128756f7884b5dab5 Mon Sep 17 00:00:00 2001 From: Steven Johnson Date: Thu, 7 Dec 2023 10:03:06 -0800 Subject: [PATCH] =?UTF-8?q?Silence=20useless=20'Outer=20dim=20vectorizatio?= =?UTF-8?q?n=20of=20var'=20warning=20in=20Mullapudi=E2=80=A6=20(#7992)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Silence useless 'Outer dim vectorization of var' warning in Mullapudi scheduler --- src/autoschedulers/mullapudi2016/AutoSchedule.cpp | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/autoschedulers/mullapudi2016/AutoSchedule.cpp b/src/autoschedulers/mullapudi2016/AutoSchedule.cpp index be2ede0748b0..2ce325538a86 100644 --- a/src/autoschedulers/mullapudi2016/AutoSchedule.cpp +++ b/src/autoschedulers/mullapudi2016/AutoSchedule.cpp @@ -2479,10 +2479,13 @@ void Partitioner::vectorize_stage(const Group &g, Stage f_handle, int stage_num, // storage dimension of the func. // // TODO: Check if the warning is necessary. - if (vec_dim_index > 0) { - user_warning << "Outer dim vectorization of var \"" << vec_dim_name - << "\" in function \"" << f_handle.name() << "\"\n"; - } + // + // Disabled: this isn't really user actionable, and is just noise. + // + // if (vec_dim_index > 0) { + // user_warning << "Outer dim vectorization of var \"" << vec_dim_name + // << "\" in function \"" << f_handle.name() << "\"\n"; + // } } }