From 4b4f3c232b32e872aac755f64414ce3a78d91e7f Mon Sep 17 00:00:00 2001
From: Andreas Kloeckner <inform@tiker.net>
Date: Fri, 10 Aug 2018 15:32:20 -0500
Subject: [PATCH] [pybind] Fix stray cffi import in cache

---
 pyopencl/cache.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pyopencl/cache.py b/pyopencl/cache.py
index 670134e8..48b6270e 100644
--- a/pyopencl/cache.py
+++ b/pyopencl/cache.py
@@ -374,7 +374,7 @@ def _create_built_program_from_source_cached(ctx, src, options_bytes,
             if log is not None and log.strip())
 
     if message:
-        from pyopencl.cffi_cl import compiler_output
+        from pyopencl import compiler_output
         compiler_output(
                 "Built kernel retrieved from cache. Original from-source "
                 "build had warnings:\n"+message)
-- 
GitLab