blob: 8e042c93fd2bea0619e07a40580f82263133e01e [file] [log] [blame]
Marat Dukhan08c4a432019-10-03 09:29:21 -07001workspace(name = "xnnpack")
2
3load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
4
5# Google Test framework, used by most unit-tests.
6http_archive(
7 name = "com_google_googletest",
8 urls = ["https://github.com/google/googletest/archive/master.zip"],
9 strip_prefix = "googletest-master",
10)
11
12# Google Benchmark library, used in micro-benchmarks.
13http_archive(
14 name = "com_google_benchmark",
15 urls = [
16 "https://github.com/google/benchmark/archive/master.zip"
17 ],
18 strip_prefix = "benchmark-master",
19 build_file = "@//third_party:benchmark.BUILD",
20)
21
22# FP16 library, used for half-precision conversions
23http_archive(
24 name = "FP16",
25 strip_prefix = "FP16-ba1d31f5eed2eb4a69e4dea3870a68c7c95f998f",
26 sha256 = "9764297a339ad73b0717331a2c3e9c42a52105cd04cab62cb160e2b4598d2ea6",
27 urls = [
28 "https://github.com/Maratyszcza/FP16/archive/ba1d31f5eed2eb4a69e4dea3870a68c7c95f998f.tar.gz",
29 ],
30 build_file = "@//third_party:FP16.BUILD",
31)
32
33# FXdiv library, used for repeated integer division by the same factor
34http_archive(
35 name = "FXdiv",
36 strip_prefix = "FXdiv-f8c5354679ec2597792bc70a9e06eff50c508b9a",
37 sha256 = "7d3215bea832fe77091ec5666200b91156df6724da1e348205078346325fc45e",
38 urls = [
39 "https://github.com/Maratyszcza/FXdiv/archive/f8c5354679ec2597792bc70a9e06eff50c508b9a.tar.gz",
40 ],
41 build_file = "@//third_party:FXdiv.BUILD",
42)
43
44# pthreadpool library, used for parallelization
45http_archive(
46 name = "pthreadpool",
Yasuhiro Matsumoto4ea95be2020-03-02 15:41:46 +090047 strip_prefix = "pthreadpool-ebd50d0cfa3664d454ffdf246fcd228c3b370a11",
48 sha256 = "ca4fc774cf2339cb739bba827de8ed4ccbd450c4608e05329e974153448aaf56",
Marat Dukhan08c4a432019-10-03 09:29:21 -070049 urls = [
Yasuhiro Matsumoto4ea95be2020-03-02 15:41:46 +090050 "https://github.com/Maratyszcza/pthreadpool/archive/ebd50d0cfa3664d454ffdf246fcd228c3b370a11.tar.gz",
Marat Dukhan08c4a432019-10-03 09:29:21 -070051 ],
52 build_file = "@//third_party:pthreadpool.BUILD",
53)
54
55# clog library, used for logging
56http_archive(
57 name = "clog",
58 strip_prefix = "cpuinfo-d5e37adf1406cf899d7d9ec1d317c47506ccb970",
59 sha256 = "3f2dc1970f397a0e59db72f9fca6ff144b216895c1d606f6c94a507c1e53a025",
60 urls = [
61 "https://github.com/pytorch/cpuinfo/archive/d5e37adf1406cf899d7d9ec1d317c47506ccb970.tar.gz",
62 ],
63 build_file = "@//third_party:clog.BUILD",
64)
65
66# cpuinfo library, used for detecting processor characteristics
67http_archive(
68 name = "cpuinfo",
Marat Dukhan50bb9102020-02-25 19:55:47 -080069 strip_prefix = "cpuinfo-e39a5790059b6b8274ed91f7b5b5b13641dff267",
70 sha256 = "e5caa8b7c58f1623eed88f4d5147e3753ff19cde821526bc9aa551b004f751fe",
Marat Dukhan08c4a432019-10-03 09:29:21 -070071 urls = [
Marat Dukhan50bb9102020-02-25 19:55:47 -080072 "https://github.com/pytorch/cpuinfo/archive/e39a5790059b6b8274ed91f7b5b5b13641dff267.tar.gz",
Marat Dukhan08c4a432019-10-03 09:29:21 -070073 ],
74 build_file = "@//third_party:cpuinfo.BUILD",
Marat Dukhan1f5d9bc2020-01-02 09:11:16 -080075 patches = ["@//third_party:cpuinfo.patch"],
Marat Dukhan08c4a432019-10-03 09:29:21 -070076)
77
78# psimd library, used for fallback 128-bit SIMD micro-kernels
79http_archive(
80 name = "psimd",
Marat Dukhan3ba868c2020-02-21 09:08:37 -080081 strip_prefix = "psimd-88882f601f8179e1987b7e7cf4a8012c9080ad44",
82 sha256 = "c621f9bb1ff9ab8f0fa4a04f3239d13b345a6e865318d7b464aa80531a1abb2c",
Marat Dukhan08c4a432019-10-03 09:29:21 -070083 urls = [
Marat Dukhan3ba868c2020-02-21 09:08:37 -080084 "https://github.com/Maratyszcza/psimd/archive/88882f601f8179e1987b7e7cf4a8012c9080ad44.tar.gz",
Marat Dukhan08c4a432019-10-03 09:29:21 -070085 ],
86 build_file = "@//third_party:psimd.BUILD",
87)
88
89# Android NDK location and version is auto-detected from $ANDROID_NDK_HOME environment variable
90android_ndk_repository(name = "androidndk")
91
92# Android SDK location and API is auto-detected from $ANDROID_HOME environment variable
93android_sdk_repository(name = "androidsdk")