mirror of
https://github.com/tensorflow/tensorflow.git
synced 2024-11-21 21:05:19 +00:00
132c98b29c
This marks an important step towards delivering OpenXLA, Google’s OSS-based unified ML software infrastructure. PiperOrigin-RevId: 563177047
15 lines
311 B
Python
15 lines
311 B
Python
load("@rules_license//rules:license.bzl", "license")
|
|
|
|
package(
|
|
default_applicable_licenses = [":license"],
|
|
default_visibility = ["//visibility:public"],
|
|
)
|
|
|
|
licenses(["notice"])
|
|
|
|
license(
|
|
name = "license",
|
|
package_name = "xla",
|
|
license_kinds = ["@rules_license//licenses/spdx:Apache-2.0"],
|
|
)
|