From 594ad863757aa407350f69e0599c8f5e01149ffe Mon Sep 17 00:00:00 2001 From: Chen Lai Date: Wed, 22 Jan 2025 18:17:50 -0800 Subject: [PATCH] forward fix (#7871) Summary: Pull Request resolved: https://github.com/pytorch/executorch/pull/7871 Forward fix for the previous PR https://github.com/pytorch/executorch/pull/7618 Reviewed By: tarun292 Differential Revision: D68362771 --- examples/qualcomm/oss_scripts/llama/TARGETS | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/examples/qualcomm/oss_scripts/llama/TARGETS b/examples/qualcomm/oss_scripts/llama/TARGETS index 02bf18075c4..7043e8b9275 100644 --- a/examples/qualcomm/oss_scripts/llama/TARGETS +++ b/examples/qualcomm/oss_scripts/llama/TARGETS @@ -5,6 +5,16 @@ load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime") oncall("executorch") +python_library( + name = "static_llama", + srcs = [ + "model/static_llama.py", + ], + deps = [ + "//caffe2:torch", + ], +) + python_binary( name = "llama", srcs = ["llama.py"],