From 16298645118d5a20760c0a27d612cfe01d7be58a Mon Sep 17 00:00:00 2001 From: Matthias Diener <mdiener@illinois.edu> Date: Thu, 10 Jun 2021 16:55:35 -0500 Subject: [PATCH] better error message --- arraycontext/impl/pytato.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arraycontext/impl/pytato.py b/arraycontext/impl/pytato.py index b6bf800..ebc69df 100644 --- a/arraycontext/impl/pytato.py +++ b/arraycontext/impl/pytato.py @@ -288,7 +288,7 @@ class PytatoArrayContext(ArrayContext): if isinstance(array, cla.Array): return array.with_queue(None) if not isinstance(array, pt.Array): - raise TypeError("PytatoArrayContext.freeze invoked with non-pt arrays") + raise TypeError(f"PytatoArrayContext.freeze invoked with non-pt array of type '{type(array)}'") prg = pt.generate_loopy(array, cl_device=self.queue.device) evt, (cl_array,) = prg(self.queue) -- GitLab