-
Notifications
You must be signed in to change notification settings - Fork 1
/
WORKSPACE
58 lines (50 loc) · 2.04 KB
/
WORKSPACE
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
workspace(name = "TIM_VX")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
##############################################################################
# Toolchains
##############################################################################
http_archive(
name = "aarch64_A311D",
build_file = "@//prebuilt-sdk/x86_64_linux:BUILD",
sha256 = "a93eb14a410123f30124ba661f40bb7556fca8d8c6508025301b78044a2e14ab",
strip_prefix = "aarch64_A311D_6.4.8",
urls = [
"https://github.com/VeriSilicon/TIM-VX/releases/download/v1.1.34/aarch64_A311D_6.4.8.tgz",
],
)
http_archive(
name = "aarch64_S905D3",
build_file = "@//prebuilt-sdk/x86_64_linux:BUILD",
sha256 = "b26e95e39a96f331b46b08339770ed719f1507a35c9a5e339e90a0f1212319b6",
strip_prefix = "aarch64_S905D3_6.4.8",
urls = [
"https://github.com/VeriSilicon/TIM-VX/releases/download/v1.1.34/aarch64_S905D3_6.4.8.tgz",
],
)
http_archive(
name = "VIPLite_aarch64_A311D",
build_file = "@//prebuilt-sdk/VIPLite:BUILD",
sha256 = "63fafc2b6d4a92389298af42a60d82bc2767abed330a8c09f7428fc3828ca31f",
strip_prefix = "viplite",
urls = [
"https://github.com/VeriSilicon/TIM-VX/releases/download/v1.1.28/VIPLite_aarch64_A311D_1.3.5.tgz",
],
)
local_repository(
name = 'TOOLCHAINS',
path = 'toolchains',
)
load("@TOOLCHAINS//:toolchains.bzl", "init_toolchains")
init_toolchains()
##############################################################################
#Third party repositories
##############################################################################
http_archive(
name = "gtest",
sha256 = "ff7a82736e158c077e76188232eac77913a15dac0b22508c390ab3f88e6d6d86",
strip_prefix = "googletest-b6cd405286ed8635ece71c72f118e659f4ade3fb",
urls = [
"https://storage.googleapis.com/mirror.tensorflow.org/github.com/google/googletest/archive/b6cd405286ed8635ece71c72f118e659f4ade3fb.zip",
"https://github.com/google/googletest/archive/b6cd405286ed8635ece71c72f118e659f4ade3fb.zip",
],
)