@@ -109,7 +109,6 @@ def forward(self, x, y, z, d):
109
109
110
110
@pytest .mark .nightly
111
111
@pytest .mark .precommit_torch_export
112
- @pytest .mark .precommit_fx_backend
113
112
@pytest .mark .parametrize ("dtype" , [None ,
114
113
skip_if_export ("float32" ),
115
114
skip_if_export ("float64" ),
@@ -124,7 +123,6 @@ def test_arange_end_only(self, dtype, end, use_out, ie_device, precision, ir_ver
124
123
kwargs_to_prepare_input = {"end" : end })
125
124
126
125
@pytest .mark .nightly
127
- @pytest .mark .precommit_fx_backend
128
126
@pytest .mark .parametrize ("dtype" , [None , "float32" , "float64" , "int32" , "int64" , "int8" ])
129
127
@pytest .mark .parametrize ("start,end" , [(0 , 1 ), (- 1 , 1 ), (1 , 5 ), (0.5 , 2.5 )])
130
128
def test_arange_start_end (self , dtype , end , start , ie_device , precision , ir_version ):
@@ -133,7 +131,6 @@ def test_arange_start_end(self, dtype, end, start, ie_device, precision, ir_vers
133
131
134
132
@pytest .mark .nightly
135
133
@pytest .mark .precommit
136
- @pytest .mark .precommit_fx_backend
137
134
@pytest .mark .parametrize ("dtype" , [None , "float32" , "float64" , "int32" , "int64" , "int8" ])
138
135
@pytest .mark .parametrize ("start,end,step" , [(0 , 1 , 1 ), (- 2 , 1 , 1.25 ), (1 , - 5 , - 1 ), (1 , 10 , 2 ), (- 1 , - 5 , - 2 )])
139
136
def test_arange_start_end_step (self , dtype , end , start , step , ie_device , precision , ir_version ):
@@ -142,7 +139,6 @@ def test_arange_start_end_step(self, dtype, end, start, step, ie_device, precisi
142
139
143
140
@pytest .mark .nightly
144
141
@pytest .mark .precommit_torch_export
145
- @pytest .mark .precommit_fx_backend
146
142
@pytest .mark .parametrize ("dtype" , [skip_check (None ),
147
143
skip_if_export ("float32" ),
148
144
skip_if_export ("float64" ),
@@ -156,7 +152,6 @@ def test_arange_end_only_with_prim_dtype(self, dtype, end, ie_device, precision,
156
152
kwargs_to_prepare_input = {"end" : end , "ref_dtype" : dtype })
157
153
158
154
@pytest .mark .nightly
159
- @pytest .mark .precommit_fx_backend
160
155
@pytest .mark .parametrize ("dtype" , ["float32" , "float64" , "int32" , "int64" , "int8" ])
161
156
@pytest .mark .parametrize ("start,end" , [(0 , 1 ), (- 1 , 1 ), (1 , 5 ), (0.5 , 2.5 )])
162
157
def test_arange_start_end_with_prim_dtype (self , dtype , end , start , ie_device , precision , ir_version ):
@@ -165,7 +160,6 @@ def test_arange_start_end_with_prim_dtype(self, dtype, end, start, ie_device, pr
165
160
166
161
@pytest .mark .nightly
167
162
@pytest .mark .precommit
168
- @pytest .mark .precommit_fx_backend
169
163
@pytest .mark .parametrize ("dtype" , ["float32" , "float64" , "int32" , "int64" , "int8" ])
170
164
@pytest .mark .parametrize ("start,end,step" , [(0 , 1 , 1 ), (- 2 , 1 , 1.25 ), (1 , - 5 , - 1 ), (1 , 10 , 2 ), (- 1 , - 5 , - 2 )])
171
165
def test_arange_start_end_step_with_prim_dtype (self , dtype , end , start , step , ie_device , precision , ir_version ):
0 commit comments