Open asmeurer opened 1 year ago
Interesting scenario!
cupy.meshgrid
does have theindexing
keyword, but its signature ismeshgrid(*x, **kwargs)
. If we can't check a keyword argument directly, we should assume it is present with**kwargs
, and let the individual tests suss out whether it really supports it.
Personally I'd rather skip here (after testing everything else first so the test still could fail), as we can't confidently say the test "passes", with a skip reason like "keyword not found, but star-kwargs could consume keyword".
The meshgrid signature test fails with cupy:
cupy.meshgrid
does have theindexing
keyword, but its signature ismeshgrid(*x, **kwargs)
. If we can't check a keyword argument directly, we should assume it is present with**kwargs
, and let the individual tests suss out whether it really supports it.