jax authors 42ef649e65 Merge pull request #14475 from hawkinsp:openxla
PiperOrigin-RevId: 516316330
2023-03-13 14:04:41 -07:00

35 lines
1.1 KiB
Python

# Copyright 2021 The JAX Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
licenses(["notice"])
cc_binary(
name = "main",
srcs = ["main.cc"],
tags = ["manual"],
deps = [
"@xla//:literal",
"@xla//:literal_util",
"@xla//:shape_util",
"@xla//:status",
"@xla//:statusor",
"@xla///pjrt:pjrt_client",
"@xla///pjrt:tfrt_cpu_pjrt_client",
"@xla///service:hlo_proto_cc",
"@xla///tools:hlo_module_loader",
"@tsl///platform:logging",
"@tsl///platform:platform_port",
],
)