forked from plaidml/plaidml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
38 lines (25 loc) · 1.01 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
# Bazel Workspace for PlaidML
workspace(name = "com_intel_plaidml")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# define this first in case any repository rules want to use it
http_archive(
name = "bazel_skylib",
sha256 = "97e70364e9249702246c0e9444bccdc4b847bed1eb03c5a3ece4f83dfe6abc44",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.0.2/bazel-skylib-1.0.2.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.0.2/bazel-skylib-1.0.2.tar.gz",
],
)
load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
bazel_skylib_workspace()
load("//bzl:workspace.bzl", "plaidml_workspace")
plaidml_workspace()
load("@rules_pkg//:deps.bzl", "rules_pkg_dependencies")
rules_pkg_dependencies()
load("@rules_python//python:repositories.bzl", "py_repositories")
py_repositories()
register_toolchains(
"//:py_toolchain",
)
load("@bazel_latex//:repositories.bzl", "latex_repositories")
latex_repositories()