diff --git a/test/test_array.py b/test/test_array.py index a2f4739175d80a49fb34d17db2cd03ee28f114b7..bbc63f3a36f8c90a1ee96bc525bec5c45dda80fb 100644 --- a/test/test_array.py +++ b/test/test_array.py @@ -227,6 +227,21 @@ def test_absrealimag(ctx_factory): # {{{ operators +@pytools.test.mark_test.opencl +def test_rmul_yields_right_type(ctx_factory): + context = ctx_factory() + queue = cl.CommandQueue(context) + + a = np.array([1, 2, 3, 4, 5]).astype(np.float32) + a_gpu = cl_array.to_device(queue, a) + + two_a = 2*a_gpu + assert isinstance(two_a, cl_array.Array) + + two_a = np.float32(2)*a_gpu + assert isinstance(two_a, cl_array.Array) + + @pytools.test.mark_test.opencl def test_pow_array(ctx_factory): context = ctx_factory()