diff --git a/loopy/preprocess.py b/loopy/preprocess.py index d614dc164818f9e4066bd2cb2a71e51a30a9b7e3..1452729074ac9f03294f779829e72c16a4468fb3 100644 --- a/loopy/preprocess.py +++ b/loopy/preprocess.py @@ -841,8 +841,9 @@ def get_auto_axis_iname_ranking_by_stride(kernel, insn): continue coeffs = CoefficientCollector()(iexpr_i) for var, coeff in six.iteritems(coeffs): - assert isinstance(var, Variable) - if var.name in auto_axis_inames: # excludes '1', i.e. the constant + if (isinstance(var, Variable) + and var.name in auto_axis_inames): + # excludes '1', i.e. the constant new_stride = coeff*stride old_stride = iname_to_stride_expr.get(var.name, None) if old_stride is None or new_stride < old_stride: