forked from VeriSilicon/TIM-VX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWORKSPACE
58 lines (50 loc) · 2.17 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 = "9c3fe033f6d012010c92ed1f173b5410019ec144ddf68cbc49eaada2b4737e7f",
strip_prefix = "aarch64_A311D_D312513_A294074_R311680_T312233_O312045",
urls = [
"https://github.com/VeriSilicon/TIM-VX/releases/download/v1.1.28/aarch64_A311D_D312513_A294074_R311680_T312233_O312045.tgz",
],
)
http_archive(
name = "aarch64_S905D3",
build_file = "@//prebuilt-sdk/x86_64_linux:BUILD",
sha256 = "22e1ddb62216d286a1c0e62b673a8210291d0c045c4b8a18197e704da1007f7a",
strip_prefix = "aarch64_S905D3_D312513_A294074_R311680_T312233_O312045",
urls = [
"https://github.com/VeriSilicon/TIM-VX/releases/download/v1.1.28/aarch64_S905D3_D312513_A294074_R311680_T312233_O312045.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",
],
)