Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Weaken dtype identity test
  • Loading branch information
inducer committed Oct 21, 2015
1 parent 5d59c2f commit edd4ffc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_gpuarray.py
Expand Up @@ -751,7 +751,7 @@ def test_vector_fill(self):
a_gpu = gpuarray.GPUArray(100, dtype=gpuarray.vec.float3)
a_gpu.fill(gpuarray.vec.make_float3(0.0, 0.0, 0.0))
a = a_gpu.get()
assert a.dtype is gpuarray.vec.float3
assert a.dtype == gpuarray.vec.float3

@mark_cuda_test
def test_create_complex_zeros(self):
Expand Down

0 comments on commit edd4ffc

Please sign in to comment.