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 77
88from typing import Tuple
99
10+ import pytest
1011import torch
1112from executorch .backends .arm .quantizer import arm_quantizer
1213from executorch .backends .arm .test import common , conftest
@@ -201,7 +202,10 @@ def test_add_tensor_vgf_FP(test_data: input_t1):
201202 tosa_version = "TOSA-1.0+FP" ,
202203 run_on_vulkan_runtime = True ,
203204 )
204- pipeline .run ()
205+ try :
206+ pipeline .run ()
207+ except FileNotFoundError as e :
208+ pytest .skip (f"VKML executor_runner not found - not built - skip { e } " )
205209
206210
207211@common .parametrize ("test_data" , filtered_test_data )
@@ -215,4 +219,7 @@ def test_add_tensor_vgf_INT(test_data: input_t1):
215219 tosa_version = "TOSA-1.0+INT" ,
216220 run_on_vulkan_runtime = True ,
217221 )
218- pipeline .run ()
222+ try :
223+ pipeline .run ()
224+ except FileNotFoundError as e :
225+ pytest .skip (f"VKML executor_runner not found - not built - skip { e } " )
You can’t perform that action at this time.
0 commit comments