-
Notifications
You must be signed in to change notification settings - Fork 986
Expand file tree
/
Copy pathBUCK
More file actions
34 lines (32 loc) · 994 Bytes
/
BUCK
File metadata and controls
34 lines (32 loc) · 994 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
load("@fbcode_macros//build_defs:build_file_migration.bzl", "fbcode_target", "non_fbcode_target")
load("@fbcode_macros//build_defs:python_unittest.bzl", "python_unittest")
load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime")
oncall("executorch")
fbcode_target(_kind = runtime.python_library,
name = "vulkan_patterns",
srcs = [
"__init__.py",
"pattern_registry.py",
"rope.py",
"rope_hf.py",
"quantized_embedding.py",
"quantized_linear.py",
"quantized_convolution.py",
"quantized_binary.py",
"quantized_unary.py",
"rms_norm.py",
"sdpa.py",
"select_as_symint.py",
],
visibility = [
"//executorch/backends/...",
"//executorch/examples/...",
],
deps = [
"//caffe2:torch",
"//executorch/exir:lib",
"//executorch/backends/transforms:utils",
"//executorch/backends/vulkan:utils_lib",
],
typing = True,
)