From 89a13a8b3c913ae12aefe78fd89ba6ef873b7ad8 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Sat, 15 Dec 2012 18:09:19 -0500 Subject: [PATCH] Scan: Fix an error message. --- pyopencl/scan.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyopencl/scan.py b/pyopencl/scan.py index 17d2de3f..c814d872 100644 --- a/pyopencl/scan.py +++ b/pyopencl/scan.py @@ -1246,8 +1246,8 @@ class GenericScanKernel(_GenericScanKernelBase): queue = kwargs.get("queue") if len(args) != len(self.parsed_args): - raise TypeError("invalid number of arguments in " - "custom-arguments mode") + raise TypeError("expected %d arguments, got %d" % + (len(self.parsed_args), len(args))) first_array = args[self.first_array_idx] allocator = allocator or first_array.allocator @@ -1425,8 +1425,8 @@ class GenericDebugScanKernel(_GenericScanKernelBase): queue = kwargs.get("queue") if len(args) != len(self.parsed_args): - raise TypeError("invalid number of arguments in " - "custom-arguments mode") + raise TypeError("expected %d arguments, got %d" % + (len(self.parsed_args), len(args))) first_array = args[self.first_array_idx] allocator = allocator or first_array.allocator -- GitLab