forked from alibaba/tair-kvcache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD
More file actions
36 lines (32 loc) · 880 Bytes
/
BUILD
File metadata and controls
36 lines (32 loc) · 880 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
35
36
config_setting(
name = "using_cuda",
values = {"define": "using_cuda=true"},
)
py_runtime(
name = "python3",
interpreter_path = "/usr/bin/python3",
visibility = ["//visibility:public"],
python_version = "PY3",
stub_shebang = "#!/usr/bin/python3"
)
py_runtime(
name = "python310",
interpreter_path = "/opt/conda310/bin/python",
visibility = ["//visibility:public"],
python_version = "PY3",
stub_shebang = "#!/opt/conda310/bin/python"
)
py_runtime(
name = "python311",
interpreter_path = "/usr/bin/python3.11",
visibility = ["//visibility:public"],
python_version = "PY3",
stub_shebang = "#!/usr/bin/python3.11"
)
py_runtime(
name = "python312",
interpreter_path = "/usr/bin/python3.12",
visibility = ["//visibility:public"],
python_version = "PY3",
stub_shebang = "#!/usr/bin/python3.12"
)