From 6939047311c203c0b8f6d3fdae467fd5c5de532f Mon Sep 17 00:00:00 2001 From: RJ Ascani Date: Thu, 25 Jun 2026 10:42:05 -0700 Subject: [PATCH] Point VGF tests at model-converter 0.9.0 Summary: `tosa_tools` v2026.5.0 emits TOSA SerLib 2026.5.0 flatbuffers, which the model-converter v0.8.0 cannot deserialize (`ERROR: Tosa file created with newer SerLib version 2026.5.0 is not compatible with current version 1.1.0d`). Repoint the Arm VGF test `MODEL_CONVERTER_PATH` to `ai-ml-sdk-model-converter/0.9.0`, which supports the new spec. Applied to both the fbcode and xplat mirrors. Differential Revision: D109721412 --- backends/arm/test/targets.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backends/arm/test/targets.bzl b/backends/arm/test/targets.bzl index a5ce8e2a5bb..65ba3bc77cb 100644 --- a/backends/arm/test/targets.bzl +++ b/backends/arm/test/targets.bzl @@ -96,7 +96,7 @@ def define_arm_tests(): typing = False, skip_on_mode_mac = True, env = {} if runtime.is_oss else ({ - "MODEL_CONVERTER_PATH": "$(location fbsource//third-party/pypi/ai-ml-sdk-model-converter/0.8.0:model-converter-bin)", + "MODEL_CONVERTER_PATH": "$(location fbsource//third-party/pypi/ai-ml-sdk-model-converter/0.9.0:model-converter-bin)", "MODEL_CONVERTER_LIB_DIR": "$(location fbsource//third-party/nvidia-nsight-systems:linux-x86_64)/host-linux-x64", "LAVAPIPE_LIB_PATH": "$(location fbsource//third-party/mesa:vulkan_lvp)", "EMULATION_LAYER_TENSOR_SO": "$(location fbsource//third-party/arm-ml-emulation-layer/v0.9.0/src:libVkLayer_Tensor)",