We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 963f809 commit f9bf71fCopy full SHA for f9bf71f
examples/models/llama2/TARGETS
@@ -1,6 +1,7 @@
1
# Any targets that should be shared between fbcode and xplat must be defined in
2
# targets.bzl. This file can contain fbcode-only targets.
3
4
+load("@fbsource//tools/build_defs:fb_native_wrapper.bzl", "fb_native")
5
load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime")
6
load(":targets.bzl", "define_common_targets")
7
@@ -65,6 +66,14 @@ runtime.python_binary(
65
66
],
67
)
68
69
+fb_native.command_alias(
70
+ name = "export_llama_qnn",
71
+ env = {
72
+ "LD_LIBRARY_PATH": "$(location fbsource//third-party/qualcomm/qnn/qnn-2.25:qnn_offline_compile_libs)",
73
+ },
74
+ exe = ":export_llama",
75
+)
76
+
77
runtime.python_library(
78
name = "export_library",
79
srcs = [
0 commit comments