You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
696 B
16 lines
696 B
4 months ago
|
"""Loads the kissfft library, used by TF Lite."""
|
||
|
|
||
|
load("//third_party:repo.bzl", "third_party_http_archive")
|
||
|
|
||
|
def repo():
|
||
|
third_party_http_archive(
|
||
|
name = "kissfft",
|
||
|
strip_prefix = "kissfft-36dbc057604f00aacfc0288ddad57e3b21cfc1b8",
|
||
|
sha256 = "42b7ef406d5aa2d57a7b3b56fc44e8ad3011581692458a69958a911071efdcf2",
|
||
|
urls = [
|
||
|
"https://storage.googleapis.com/mirror.tensorflow.org/github.com/mborgerding/kissfft/archive/36dbc057604f00aacfc0288ddad57e3b21cfc1b8.tar.gz",
|
||
|
"https://github.com/mborgerding/kissfft/archive/36dbc057604f00aacfc0288ddad57e3b21cfc1b8.tar.gz",
|
||
|
],
|
||
|
build_file = "//third_party/kissfft:BUILD.bazel",
|
||
|
)
|