Vijay Vasudevan | 8cc567b | 2016-05-26 11:05:13 -0800 | [diff] [blame] | 1 | workspace(name = "org_tensorflow") |
| 2 | |
A. Unique TensorFlower | 5b14577 | 2018-11-30 11:11:23 -0800 | [diff] [blame^] | 3 | load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") |
| 4 | |
Justine Tunney | 02f276c | 2017-02-03 17:13:49 -0800 | [diff] [blame] | 5 | http_archive( |
| 6 | name = "io_bazel_rules_closure", |
Yifei Feng | 22f3a97 | 2018-04-23 21:19:14 -0700 | [diff] [blame] | 7 | sha256 = "a38539c5b5c358548e75b44141b4ab637bba7c4dc02b46b1f62a96d6433f56ae", |
| 8 | strip_prefix = "rules_closure-dbb96841cc0a5fb2664c37822803b06dab20c7d1", |
Justine Tunney | 02f276c | 2017-02-03 17:13:49 -0800 | [diff] [blame] | 9 | urls = [ |
Yifei Feng | 22f3a97 | 2018-04-23 21:19:14 -0700 | [diff] [blame] | 10 | "https://mirror.bazel.build/github.com/bazelbuild/rules_closure/archive/dbb96841cc0a5fb2664c37822803b06dab20c7d1.tar.gz", |
| 11 | "https://github.com/bazelbuild/rules_closure/archive/dbb96841cc0a5fb2664c37822803b06dab20c7d1.tar.gz", # 2018-04-13 |
Justine Tunney | 02f276c | 2017-02-03 17:13:49 -0800 | [diff] [blame] | 12 | ], |
| 13 | ) |
Gunhan Gulsoy | b4ae852 | 2018-09-26 02:31:31 -0700 | [diff] [blame] | 14 | |
Justine Tunney | 02f276c | 2017-02-03 17:13:49 -0800 | [diff] [blame] | 15 | load("@io_bazel_rules_closure//closure:defs.bzl", "closure_repositories") |
Gunhan Gulsoy | b4ae852 | 2018-09-26 02:31:31 -0700 | [diff] [blame] | 16 | |
Justine Tunney | 02f276c | 2017-02-03 17:13:49 -0800 | [diff] [blame] | 17 | closure_repositories() |
| 18 | |
A. Unique TensorFlower | 54cc77e | 2018-11-12 09:31:53 -0800 | [diff] [blame] | 19 | http_archive( |
| 20 | name = "base_images_docker", |
| 21 | sha256 = "e2b1b7254270bb7605e814a9dbf6d1e4ae04a11136ff1714fbfdabe3f87f7cf9", |
| 22 | strip_prefix = "base-images-docker-12801524f867e657fbb5d1a74f31618aff181ac6", |
| 23 | urls = ["https://github.com/GoogleCloudPlatform/base-images-docker/archive/12801524f867e657fbb5d1a74f31618aff181ac6.tar.gz"], |
| 24 | ) |
| 25 | |
| 26 | http_archive( |
| 27 | name = "bazel_toolchains", |
| 28 | sha256 = "15b5858b1b5541ec44df31b94c3b8672815b31d71215a98398761ea9f4c4eedb", |
| 29 | strip_prefix = "bazel-toolchains-6200b238c9c2d137c0d9a7262c80cc71d98e692b", |
| 30 | urls = [ |
| 31 | "https://github.com/bazelbuild/bazel-toolchains/archive/6200b238c9c2d137c0d9a7262c80cc71d98e692b.tar.gz", |
| 32 | ], |
| 33 | ) |
| 34 | |
| 35 | http_archive( |
| 36 | name = "io_bazel_rules_docker", |
| 37 | sha256 = "29d109605e0d6f9c892584f07275b8c9260803bf0c6fcb7de2623b2bedc910bd", |
| 38 | strip_prefix = "rules_docker-0.5.1", |
| 39 | urls = ["https://github.com/bazelbuild/rules_docker/archive/v0.5.1.tar.gz"], |
| 40 | ) |
| 41 | |
| 42 | load("//third_party/toolchains/preconfig/generate:workspace.bzl", "remote_config_workspace") |
| 43 | |
| 44 | remote_config_workspace() |
| 45 | |
Ilya Biryukov | 9e651e4 | 2018-03-22 05:33:42 -0700 | [diff] [blame] | 46 | # We must check the bazel version before trying to parse any other BUILD |
| 47 | # files, in case the parsing of those build files depends on the bazel |
| 48 | # version we require here. |
| 49 | load("//tensorflow:version_check.bzl", "check_bazel_version_at_least") |
Yifei Feng | bb38411 | 2018-07-24 13:12:54 -0700 | [diff] [blame] | 50 | check_bazel_version_at_least("0.15.0") |
Ilya Biryukov | 9e651e4 | 2018-03-22 05:33:42 -0700 | [diff] [blame] | 51 | |
Martin Wicke | bc456e3 | 2017-03-23 12:31:16 -0800 | [diff] [blame] | 52 | load("//tensorflow:workspace.bzl", "tf_workspace") |
Shanqing Cai | efd40e5 | 2017-01-08 20:31:30 -0800 | [diff] [blame] | 53 | |
Michael Case | 5105350 | 2018-06-05 17:47:19 -0700 | [diff] [blame] | 54 | load("//third_party/android:android_configure.bzl", "android_configure") |
| 55 | android_configure(name="local_config_android") |
| 56 | load("@local_config_android//:android.bzl", "android_workspace") |
| 57 | android_workspace() |
Manjunath Kudlur | f41959c | 2015-11-06 16:27:58 -0800 | [diff] [blame] | 58 | |
Kiril Gorovoy | 5b5976a | 2016-03-10 14:06:08 -0800 | [diff] [blame] | 59 | # Please add all new TensorFlow dependencies in workspace.bzl. |
Kiril Gorovoy | 77da168 | 2016-02-24 18:02:16 -0800 | [diff] [blame] | 60 | tf_workspace() |
Manjunath Kudlur | f41959c | 2015-11-06 16:27:58 -0800 | [diff] [blame] | 61 | |
A. Unique TensorFlower | 5b14577 | 2018-11-30 11:11:23 -0800 | [diff] [blame^] | 62 | http_archive( |
Michael Case | d90054e | 2018-02-07 14:36:00 -0800 | [diff] [blame] | 63 | name = "inception_v1", |
A. Unique TensorFlower | 5b14577 | 2018-11-30 11:11:23 -0800 | [diff] [blame^] | 64 | build_file = "//:models.BUILD", |
Michael Case | d90054e | 2018-02-07 14:36:00 -0800 | [diff] [blame] | 65 | sha256 = "7efe12a8363f09bc24d7b7a450304a15655a57a7751929b2c1593a71183bb105", |
Justine Tunney | 52b4d47 | 2017-05-17 16:13:33 -0700 | [diff] [blame] | 66 | urls = [ |
Michael Case | d90054e | 2018-02-07 14:36:00 -0800 | [diff] [blame] | 67 | "http://storage.googleapis.com/download.tensorflow.org/models/inception_v1.zip", |
| 68 | "http://download.tensorflow.org/models/inception_v1.zip", |
Justine Tunney | 52b4d47 | 2017-05-17 16:13:33 -0700 | [diff] [blame] | 69 | ], |
Dan Smilkov | f0e9bd3 | 2016-11-09 12:53:00 -0800 | [diff] [blame] | 70 | ) |
| 71 | |
A. Unique TensorFlower | 5b14577 | 2018-11-30 11:11:23 -0800 | [diff] [blame^] | 72 | http_archive( |
A. Unique TensorFlower | 53aabd5 | 2017-08-09 18:18:26 -0700 | [diff] [blame] | 73 | name = "mobile_ssd", |
A. Unique TensorFlower | 5b14577 | 2018-11-30 11:11:23 -0800 | [diff] [blame^] | 74 | build_file = "//:models.BUILD", |
A. Unique TensorFlower | 53aabd5 | 2017-08-09 18:18:26 -0700 | [diff] [blame] | 75 | sha256 = "bddd81ea5c80a97adfac1c9f770e6f55cbafd7cce4d3bbe15fbeb041e6b8f3e8", |
| 76 | urls = [ |
| 77 | "http://storage.googleapis.com/download.tensorflow.org/models/object_detection/ssd_mobilenet_v1_android_export.zip", |
| 78 | "http://download.tensorflow.org/models/object_detection/ssd_mobilenet_v1_android_export.zip", |
| 79 | ], |
| 80 | ) |
| 81 | |
A. Unique TensorFlower | 5b14577 | 2018-11-30 11:11:23 -0800 | [diff] [blame^] | 82 | http_archive( |
Justine Tunney | 52b4d47 | 2017-05-17 16:13:33 -0700 | [diff] [blame] | 83 | name = "mobile_multibox", |
A. Unique TensorFlower | 5b14577 | 2018-11-30 11:11:23 -0800 | [diff] [blame^] | 84 | build_file = "//:models.BUILD", |
Justine Tunney | 52b4d47 | 2017-05-17 16:13:33 -0700 | [diff] [blame] | 85 | sha256 = "859edcddf84dddb974c36c36cfc1f74555148e9c9213dedacf1d6b613ad52b96", |
| 86 | urls = [ |
| 87 | "http://storage.googleapis.com/download.tensorflow.org/models/mobile_multibox_v1a.zip", |
| 88 | "http://download.tensorflow.org/models/mobile_multibox_v1a.zip", |
| 89 | ], |
Andrew Harp | a30b992 | 2016-11-28 15:41:52 -0800 | [diff] [blame] | 90 | ) |
| 91 | |
A. Unique TensorFlower | 5b14577 | 2018-11-30 11:11:23 -0800 | [diff] [blame^] | 92 | http_archive( |
Justine Tunney | 52b4d47 | 2017-05-17 16:13:33 -0700 | [diff] [blame] | 93 | name = "stylize", |
A. Unique TensorFlower | 5b14577 | 2018-11-30 11:11:23 -0800 | [diff] [blame^] | 94 | build_file = "//:models.BUILD", |
Justine Tunney | 52b4d47 | 2017-05-17 16:13:33 -0700 | [diff] [blame] | 95 | sha256 = "3d374a730aef330424a356a8d4f04d8a54277c425e274ecb7d9c83aa912c6bfa", |
| 96 | urls = [ |
| 97 | "http://storage.googleapis.com/download.tensorflow.org/models/stylize_v1.zip", |
| 98 | "http://download.tensorflow.org/models/stylize_v1.zip", |
| 99 | ], |
Dan Smilkov | 38a4afc | 2016-08-31 11:56:58 -0800 | [diff] [blame] | 100 | ) |
Pete Warden | 7d01f89 | 2017-08-18 09:32:30 -0700 | [diff] [blame] | 101 | |
A. Unique TensorFlower | 5b14577 | 2018-11-30 11:11:23 -0800 | [diff] [blame^] | 102 | http_archive( |
Pete Warden | 7d01f89 | 2017-08-18 09:32:30 -0700 | [diff] [blame] | 103 | name = "speech_commands", |
A. Unique TensorFlower | 5b14577 | 2018-11-30 11:11:23 -0800 | [diff] [blame^] | 104 | build_file = "//:models.BUILD", |
Pete Warden | 7d01f89 | 2017-08-18 09:32:30 -0700 | [diff] [blame] | 105 | sha256 = "c3ec4fea3158eb111f1d932336351edfe8bd515bb6e87aad4f25dbad0a600d0c", |
| 106 | urls = [ |
| 107 | "http://storage.googleapis.com/download.tensorflow.org/models/speech_commands_v0.01.zip", |
| 108 | "http://download.tensorflow.org/models/speech_commands_v0.01.zip", |
| 109 | ], |
| 110 | ) |
A. Unique TensorFlower | 54cc77e | 2018-11-12 09:31:53 -0800 | [diff] [blame] | 111 | |