File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -209,6 +209,7 @@ def test_add_tensor_u85_INT_2(test_data: input_t2):
209
209
210
210
@common .parametrize ("test_data" , filtered_test_data )
211
211
@common .SkipIfNoModelConverter
212
+ @pytest .mark .xfail (reason = "'Failed to load VKML extensions' error in ci." )
212
213
def test_add_tensor_vgf_FP (test_data : input_t1 ):
213
214
pipeline = VgfPipeline [input_t1 ](
214
215
Add (),
@@ -226,6 +227,7 @@ def test_add_tensor_vgf_FP(test_data: input_t1):
226
227
227
228
@common .parametrize ("test_data" , filtered_test_data )
228
229
@common .SkipIfNoModelConverter
230
+ @pytest .mark .xfail (reason = "'Failed to load VKML extensions' error in ci." )
229
231
def test_add_tensor_vgf_INT (test_data : input_t1 ):
230
232
pipeline = VgfPipeline [input_t1 ](
231
233
Add (),
Original file line number Diff line number Diff line change @@ -251,7 +251,7 @@ def run_vkml_emulation_layer(
251
251
with open (pte_path , "wb" ) as f :
252
252
f .write (executorch_program_manager .buffer )
253
253
254
- cmd_line = [elf_path , "-model_path" , pte_path ]
254
+ cmd_line = [str ( elf_path ) , "-model_path" , pte_path ]
255
255
result = _run_cmd (cmd_line )
256
256
257
257
result_stdout = result .stdout .decode () # noqa: F841
You can’t perform that action at this time.
0 commit comments