Skip to content
Snippets Groups Projects
Commit f351f0b5 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Remove deprecated 'luxury' argument to PyOpenCL rng

parent 7a2ffff9
No related branches found
No related tags found
No related merge requests found
...@@ -64,9 +64,9 @@ def fill_rand(ary): ...@@ -64,9 +64,9 @@ def fill_rand(ary):
real_dtype = ary.dtype.type(0).real.dtype real_dtype = ary.dtype.type(0).real.dtype
real_ary = ary.view(real_dtype) real_ary = ary.view(real_dtype)
fill_rand(real_ary, luxury=0) fill_rand(real_ary)
else: else:
fill_rand(ary, luxury=0) fill_rand(ary)
class TestArgInfo(Record): class TestArgInfo(Record):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment