File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 7
7
8
8
from typing import Tuple
9
9
10
+ import pytest
10
11
import torch
11
12
from executorch .backends .arm .quantizer import arm_quantizer
12
13
from executorch .backends .arm .test import common , conftest
@@ -212,7 +213,10 @@ def test_add_tensor_vgf_FP(test_data: input_t1):
212
213
tosa_version = "TOSA-1.0+FP" ,
213
214
run_on_vulkan_runtime = True ,
214
215
)
215
- pipeline .run ()
216
+ try :
217
+ pipeline .run ()
218
+ except FileNotFoundError as e :
219
+ pytest .skip (f"VKML executor_runner not found - not built - skip { e } " )
216
220
217
221
218
222
@common .parametrize ("test_data" , filtered_test_data )
@@ -226,4 +230,7 @@ def test_add_tensor_vgf_INT(test_data: input_t1):
226
230
tosa_version = "TOSA-1.0+INT" ,
227
231
run_on_vulkan_runtime = True ,
228
232
)
229
- pipeline .run ()
233
+ try :
234
+ pipeline .run ()
235
+ except FileNotFoundError as e :
236
+ pytest .skip (f"VKML executor_runner not found - not built - skip { e } " )
You can’t perform that action at this time.
0 commit comments