From 322c18fe1983c6a03a7c86bf0ec3fb401422353a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= <inform@tiker.net> Date: Thu, 17 Jun 2021 14:19:09 -0500 Subject: [PATCH] Add missing @property on permits_inplace_modification --- arraycontext/impl/pyopencl.py | 1 + 1 file changed, 1 insertion(+) diff --git a/arraycontext/impl/pyopencl.py b/arraycontext/impl/pyopencl.py index 6d8cf75..80f0bb4 100644 --- a/arraycontext/impl/pyopencl.py +++ b/arraycontext/impl/pyopencl.py @@ -436,6 +436,7 @@ class PyOpenCLArrayContext(ArrayContext): def clone(self): return type(self)(self.queue, self.allocator, self._wait_event_queue_length) + @property def permits_inplace_modification(self): return True -- GitLab