From f8ead7867c339373aed1a349dfb7c3b78d05f6be Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Tue, 22 Jan 2013 01:55:55 -0500 Subject: [PATCH] Python 3 fix in test_algorithm. --- test/test_algorithm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_algorithm.py b/test/test_algorithm.py index 0bb4f084..bcf7e936 100644 --- a/test/test_algorithm.py +++ b/test/test_algorithm.py @@ -536,7 +536,7 @@ def test_partition(ctx_factory): from pyopencl.clrandom import rand as clrand for n in scan_test_counts: - print "part", n + print("part", n) a_dev = clrand(queue, (n,), dtype=np.int32, a=0, b=1000) a = a_dev.get() -- GitLab