@@ -62,19 +62,22 @@ def test_to_device_host(library):
62
62
assert_allclose (x , expected )
63
63
64
64
65
- @pytest .mark .parametrize ("target_library,func " , is_functions .items ())
65
+ @pytest .mark .parametrize ("target_library" , is_functions .keys ())
66
66
@pytest .mark .parametrize ("source_library" , is_functions .keys ())
67
- def test_asarray (source_library , target_library , func , request ):
67
+ def test_asarray (source_library , target_library , request ):
68
68
if source_library == "dask.array" and target_library == "torch" :
69
69
# Allow rest of test to execute instead of immediately xfailing
70
70
# xref https://github.com/pandas-dev/pandas/issues/38902
71
71
72
72
# TODO: remove xfail once
73
73
# https://github.com/dask/dask/issues/8260 is resolved
74
74
request .node .add_marker (pytest .mark .xfail (reason = "Bug in dask raising error on conversion" ))
75
+ if source_library == "cupy" and target_library != "cupy" :
76
+ # cupy explicitly disallows implicit conversions to CPU
77
+ pytest .skip (reason = "cupy does not support implicit conversion to CPU" )
75
78
src_lib = import_ (source_library , wrapper = True )
76
79
tgt_lib = import_ (target_library , wrapper = True )
77
- is_tgt_type = globals ()[func ]
80
+ is_tgt_type = globals ()[is_functions [ target_library ] ]
78
81
79
82
a = src_lib .asarray ([1 , 2 , 3 ])
80
83
b = tgt_lib .asarray (a )
0 commit comments