From edb2aa6112e34e6ea450b52ba1592756e9de05f4 Mon Sep 17 00:00:00 2001
From: adityapb <adityapb1546@gmail.com>
Date: Fri, 1 Dec 2017 15:48:18 +0530
Subject: [PATCH] Fix typo in RadixSort

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

diff --git a/pyopencl/algorithm.py b/pyopencl/algorithm.py
index 5083b095..a7b943cc 100644
--- a/pyopencl/algorithm.py
+++ b/pyopencl/algorithm.py
@@ -524,7 +524,7 @@ class RadixSort(object):
         if allocator is None:
             allocator = args[self.first_array_arg_idx].allocator
 
-        queue = kwargs.pop("allocator", None)
+        queue = kwargs.pop("queue", None)
         if queue is None:
             queue = args[self.first_array_arg_idx].queue
 
-- 
GitLab