File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,6 +17,19 @@ load(":targets.bzl", "define_common_targets")
1717
1818fbcode_target (_kind = define_common_targets ,)
1919
20+ fbcode_target (_kind = runtime .python_library ,
21+ name = "cache" ,
22+ srcs = [
23+ "reference_cache.py" ,
24+ "update_and_attend.py" ,
25+ ],
26+ visibility = ["PUBLIC" ],
27+ deps = [
28+ "//caffe2:torch" ,
29+ "//executorch/exir:_warnings" ,
30+ ],
31+ )
32+
2033fbcode_target (_kind = runtime .python_test ,
2134 name = "test_update_and_attend" ,
2235 srcs = [
Original file line number Diff line number Diff line change 1- load ("@fbsource//xplat/executorch/build:runtime_wrapper.bzl" , "runtime" )
2-
3-
41def define_common_targets ():
5- runtime .python_library (
6- name = "cache" ,
7- srcs = [
8- "reference_cache.py" ,
9- "update_and_attend.py" ,
10- ],
11- visibility = ["PUBLIC" ],
12- deps = [
13- "//caffe2:torch" ,
14- ],
15- )
2+ pass
You can’t perform that action at this time.
0 commit comments