1"""Loads the psimd library, used by XNNPACK.""" 2 3load("//third_party:repo.bzl", "third_party_http_archive") 4 5def repo(): 6 third_party_http_archive( 7 name = "psimd", 8 strip_prefix = "psimd-072586a71b55b7f8c584153d223e95687148a900", 9 sha256 = "dc615342bcbe51ca885323e51b68b90ed9bb9fa7df0f4419dbfa0297d5e837b7", 10 urls = [ 11 "https://storage.googleapis.com/mirror.tensorflow.org/github.com/Maratyszcza/psimd/archive/072586a71b55b7f8c584153d223e95687148a900.zip", 12 "https://github.com/Maratyszcza/psimd/archive/072586a71b55b7f8c584153d223e95687148a900.zip", 13 ], 14 build_file = "//third_party/psimd:BUILD.bazel", 15 ) 16