From ce791ca72bd37d28cd816a6f60383516c4faff60 Mon Sep 17 00:00:00 2001 From: Diptorup Deb Date: Tue, 11 Apr 2023 22:25:04 -0500 Subject: [PATCH] Use kernel compiler for parfors as well. --- numba_dpex/core/compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numba_dpex/core/compiler.py b/numba_dpex/core/compiler.py index fc0074534b..cfb0e7d8ab 100644 --- a/numba_dpex/core/compiler.py +++ b/numba_dpex/core/compiler.py @@ -85,7 +85,7 @@ def compile_with_dpex( return_type=return_type, flags=flags, locals={}, - pipeline_class=OffloadCompiler, + pipeline_class=KernelCompiler, ) else: raise UnreachableError()