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

Test that memory pools properly interact with arrays.

parent a248e67a
No related branches found
No related tags found
No related merge requests found
...@@ -13,8 +13,9 @@ def have_cl(): ...@@ -13,8 +13,9 @@ def have_cl():
return False return False
if have_cl(): if have_cl():
import pyopencl.array as cl_array
import pyopencl as cl import pyopencl as cl
import pyopencl.array as cl_array
import pyopencl.tools as cl_tools
from pyopencl.tools import pytest_generate_tests_for_pyopencl \ from pyopencl.tools import pytest_generate_tests_for_pyopencl \
as pytest_generate_tests as pytest_generate_tests
from pyopencl.characterize import has_double_support from pyopencl.characterize import has_double_support
...@@ -600,6 +601,20 @@ def test_vector_fill(ctx_factory): ...@@ -600,6 +601,20 @@ def test_vector_fill(ctx_factory):
a_gpu = cl_array.zeros(queue, 100, dtype=cl_array.vec.float4) a_gpu = cl_array.zeros(queue, 100, dtype=cl_array.vec.float4)
@pytools.test.mark_test.opencl
def test_mem_pool_with_arrays(ctx_factory):
context = ctx_factory()
queue = cl.CommandQueue(context)
mem_pool = cl_tools.MemoryPool(cl_tools.CLAllocator(context))
a_dev = cl_array.arange(queue, 2000, dtype=np.float64, allocator=mem_pool)
b_dev = cl_array.to_device(queue, np.arange(2000), allocator=mem_pool) + 4000
result = cl_array.dot(a_dev, b_dev)
assert a_dev.allocator is mem_pool
assert b_dev.allocator is mem_pool
assert result.allocator is mem_pool
if __name__ == "__main__": if __name__ == "__main__":
# make sure that import failures get reported, instead of skipping the # make sure that import failures get reported, instead of skipping the
......
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