From f56be725e739f5477f85742ab2919e179de83091 Mon Sep 17 00:00:00 2001 From: Kaushik Kulkarni Date: Wed, 28 Mar 2018 21:25:41 -0500 Subject: [PATCH] Removed a FIXME comment which has already been handled. --- loopy/type_inference.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/loopy/type_inference.py b/loopy/type_inference.py index 8df9773a9..1b5edae41 100644 --- a/loopy/type_inference.py +++ b/loopy/type_inference.py @@ -679,17 +679,6 @@ def infer_unknown_types(kernel, expect_completion=False): args=[new_arg_dict[arg.name] for arg in kernel.args], ) - #------------------------------------------------------------------------ - # KK: - # FIXME: - # for example if an instruction is : - # `[i]:z[i] = a_kernel_function([j]:x[j], [k]: y[k])` - # and if the user already provided the types of the args: x, y, z. - # Then the instruction would not go through the TypeInferenceMapper and hence - # the function: `a_kernel_function` would not undergo type specialization, - # which would create problems in the future. - #------------------------------------------------------------------------ - from loopy.kernel.function_interface import ( register_pymbolic_calls_to_knl_callables) return register_pymbolic_calls_to_knl_callables( -- GitLab