Skip to content

Commit 912fe3e

Browse files
add paddle skip and xfail files
1 parent 2d4e571 commit 912fe3e

File tree

2 files changed

+114
-0
lines changed

2 files changed

+114
-0
lines changed

paddle-skips.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
array_api_tests/test_array_object.py::test_getitem_masking
2+
array_api_tests/test_data_type_functions.py::test_result_type
3+
array_api_tests/test_data_type_functions.py::test_broadcast_arrays
4+
array_api_tests/test_manipulation_functions.py::test_roll
5+
array_api_tests/test_data_type_functions.py::test_broadcast_to
6+
array_api_tests/test_linalg.py::test_cholesky

paddle-xfails.txt

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
# Skip 'copy=...'
2+
array_api_tests/test_array_object.py::test_setitem
3+
array_api_tests/test_array_object.py::test_setitem_masking
4+
# array_api_tests/test_operators_and_elementwise_functions.py::test_add[__add__(x1, x2)]
5+
# array_api_tests/test_operators_and_elementwise_functions.py::test_add[__iadd__(x1, x2)]
6+
# array_api_tests/test_operators_and_elementwise_functions.py::test_add[__iadd__(x, s)]
7+
# array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_and[__iand__(x1, x2)]
8+
# array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_and[__iand__(x, s)]
9+
# array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_left_shift[__ilshift__(x1, x2)]
10+
# array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_left_shift[__ilshift__(x, s)]
11+
# array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_or[__ior__(x1, x2)]
12+
# array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_or[__ior__(x, s)]
13+
# array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_right_shift[__irshift__(x1, x2)]
14+
# array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_right_shift[__irshift__(x, s)]
15+
# array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_xor[__ixor__(x1, x2)]
16+
# array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_xor[__ixor__(x, s)]
17+
# array_api_tests/test_operators_and_elementwise_functions.py::test_divide[__itruediv__(x1, x2)]
18+
# array_api_tests/test_operators_and_elementwise_functions.py::test_divide[__itruediv__(x, s)]
19+
# array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[__ifloordiv__(x1, x2)]
20+
# array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[__ifloordiv__(x, s)]
21+
# array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[__imul__(x1, x2)]
22+
# array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[__imul__(x, s)]
23+
# array_api_tests/test_operators_and_elementwise_functions.py::test_pow[__ipow__(x1, x2)]
24+
# array_api_tests/test_operators_and_elementwise_functions.py::test_pow[__ipow__(x, s)]
25+
# array_api_tests/test_operators_and_elementwise_functions.py::test_subtract[__isub__(x1, x2)]
26+
# array_api_tests/test_operators_and_elementwise_functions.py::test_subtract[__isub__(x, s)]
27+
28+
# Skip promotion test for 'Scalar op Tensor'
29+
array_api_tests/test_operators_and_elementwise_functions.py::test_add[add(x1, x2)]
30+
array_api_tests/test_operators_and_elementwise_functions.py::test_divide[divide(x1, x2)]
31+
array_api_tests/test_operators_and_elementwise_functions.py::test_subtract[subtract(x1, x2)]
32+
33+
# torch do not pass
34+
array_api_tests/test_creation_functions.py::test_asarray_scalars
35+
array_api_tests/test_creation_functions.py::test_asarray_arrays
36+
array_api_tests/test_creation_functions.py::test_empty_like
37+
array_api_tests/test_creation_functions.py::test_eye
38+
array_api_tests/test_creation_functions.py::test_full
39+
array_api_tests/test_creation_functions.py::test_full_like
40+
array_api_tests/test_creation_functions.py::test_linspace
41+
array_api_tests/test_creation_functions.py::test_ones
42+
array_api_tests/test_creation_functions.py::test_ones_like
43+
array_api_tests/test_creation_functions.py::test_zeros
44+
array_api_tests/test_creation_functions.py::test_zeros_like
45+
array_api_tests/test_fft.py::test_fft
46+
array_api_tests/test_fft.py::test_ifft
47+
array_api_tests/test_fft.py::test_fftn
48+
array_api_tests/test_fft.py::test_ifftn
49+
array_api_tests/test_fft.py::test_rfft
50+
array_api_tests/test_fft.py::test_irfft
51+
array_api_tests/test_fft.py::test_rfftn
52+
array_api_tests/test_fft.py::test_hfft
53+
array_api_tests/test_fft.py::test_ihfft
54+
array_api_tests/test_has_names.py::test_has_names[manipulation-repeat]
55+
array_api_tests/test_has_names.py::test_has_names[array_method-__array_namespace__]
56+
array_api_tests/test_has_names.py::test_has_names[array_method-to_device]
57+
array_api_tests/test_indexing_functions.py::test_take
58+
array_api_tests/test_linalg.py::test_linalg_matmul
59+
array_api_tests/test_linalg.py::test_qr
60+
array_api_tests/test_linalg.py::test_solve
61+
array_api_tests/test_manipulation_functions.py::test_concat
62+
array_api_tests/test_manipulation_functions.py::test_repeat
63+
array_api_tests/test_operators_and_elementwise_functions.py::test_add[__add__(x1, x2)]
64+
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_left_shift[__lshift__(x1, x2)]
65+
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_xor[__xor__(x1, x2)]
66+
array_api_tests/test_operators_and_elementwise_functions.py::test_divide[__truediv__(x1, x2)]
67+
array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[__floordiv__(x1, x2)]
68+
array_api_tests/test_operators_and_elementwise_functions.py::test_less[__lt__(x1, x2)]
69+
array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[__mul__(x1, x2)]
70+
array_api_tests/test_operators_and_elementwise_functions.py::test_pow[__pow__(x1, x2)]
71+
array_api_tests/test_operators_and_elementwise_functions.py::test_round
72+
array_api_tests/test_operators_and_elementwise_functions.py::test_subtract[__sub__(x1, x2)]
73+
array_api_tests/test_set_functions.py::test_unique_all
74+
array_api_tests/test_set_functions.py::test_unique_counts
75+
array_api_tests/test_set_functions.py::test_unique_inverse
76+
array_api_tests/test_set_functions.py::test_unique_values
77+
array_api_tests/test_signatures.py::test_func_signature[astype]
78+
array_api_tests/test_signatures.py::test_func_signature[repeat]
79+
array_api_tests/test_signatures.py::test_func_signature[from_dlpack]
80+
array_api_tests/test_signatures.py::test_array_method_signature[__array_namespace__]
81+
array_api_tests/test_signatures.py::test_array_method_signature[__dlpack__]
82+
array_api_tests/test_signatures.py::test_array_method_signature[to_device]
83+
array_api_tests/test_sorting_functions.py::test_argsort
84+
array_api_tests/test_sorting_functions.py::test_sort
85+
array_api_tests/test_operators_and_elementwise_functions.py::test_not_equal[__ne__(x1, x2)]
86+
array_api_tests/test_operators_and_elementwise_functions.py::test_less_equal[__le__(x1, x2)]
87+
array_api_tests/test_operators_and_elementwise_functions.py::test_less_equal[less_equal(x1, x2)]
88+
array_api_tests/test_operators_and_elementwise_functions.py::test_greater_equal[greater_equal(x1, x2)]
89+
array_api_tests/test_operators_and_elementwise_functions.py::test_greater[__gt__(x1, x2)]
90+
array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[floor_divide(x1, x2)]
91+
array_api_tests/test_operators_and_elementwise_functions.py::test_equal[equal(x1, x2)]
92+
array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[__floordiv__(x, s)]
93+
array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[__ifloordiv__(x, s)]
94+
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_and[bitwise_and(x1, x2)]
95+
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_and[__and__(x1, x2)]
96+
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_left_shift[bitwise_left_shift(x1, x2)]
97+
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_or[bitwise_or(x1, x2)]
98+
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_or[__or__(x1, x2)]
99+
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_right_shift[bitwise_right_shift(x1, x2)]
100+
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_right_shift[__rshift__(x1, x2)]
101+
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_xor[bitwise_xor(x1, x2)]
102+
103+
# dtype promotion related
104+
array_api_tests/test_operators_and_elementwise_functions.py::test_floor
105+
array_api_tests/test_operators_and_elementwise_functions.py::test_ceil
106+
array_api_tests/test_operators_and_elementwise_functions.py::test_greater_equal[__ge__(x1, x2)]
107+
array_api_tests/test_operators_and_elementwise_functions.py::test_greater_equal[greater_equal(x1, x2)]
108+
array_api_tests/test_searching_functions.py::test_where

0 commit comments

Comments
 (0)