torch-mlir/utils/bazel/WORKSPACE.bazel

56 lines
1.4 KiB
Plaintext
Raw Normal View History

# This file is licensed under the Apache License v2.0 with LLVM Exceptions.
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "bazel_skylib",
sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506",
urls = [
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
],
)
load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
bazel_skylib_workspace()
new_local_repository(
name = "llvm-raw",
build_file_content = "# empty",
path = "../../externals/llvm-project",
)
load("@llvm-raw//utils/bazel:configure.bzl", "llvm_configure", "llvm_disable_optional_support_deps")
llvm_configure(
name = "llvm-project",
repo_mapping = {
"@python_runtime": "@local_config_python",
},
targets = [
"X86",
],
)
llvm_disable_optional_support_deps()
2022-07-29 14:24:42 +08:00
local_repository(
name = "mlir-hlo",
path = "../../externals/mlir-hlo/",
2022-07-29 14:24:42 +08:00
)
new_local_repository(
name = "torch-mlir-raw",
build_file_content = "# empty",
path = "../../",
)
load("@torch-mlir-raw//utils/bazel:configure.bzl", "torch_mlir_configure")
torch_mlir_configure(
name = "torch-mlir",
)