From 7dfbc072bf4315842ced182f762bdcc5e425597f Mon Sep 17 00:00:00 2001 From: Chen Lai Date: Thu, 19 Dec 2024 10:52:12 -0800 Subject: [PATCH] Add buck file for the debugger Summary: As title, add the buck file for the graph draw tools Differential Revision: D67421109 --- backends/qualcomm/debugger/TARGETS | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 backends/qualcomm/debugger/TARGETS diff --git a/backends/qualcomm/debugger/TARGETS b/backends/qualcomm/debugger/TARGETS new file mode 100644 index 00000000000..bfdc6967ed7 --- /dev/null +++ b/backends/qualcomm/debugger/TARGETS @@ -0,0 +1,12 @@ +load("@fbcode_macros//build_defs:python_library.bzl", "python_library") + +python_library( + name = "utils", + srcs = ["utils.py"], + deps = [ + "//caffe2:torch", + "fbsource//third-party/pypi/graphviz:graphviz", + "//executorch/backends/qualcomm/aot/python:PyQnnManagerAdaptor", + "fbsource//third-party/pypi/pandas:pandas", + ] +)