mirror of
https://github.com/tensorflow/tensorflow.git
synced 2024-11-21 21:05:19 +00:00
8fa1dfaa38
root of the 3P repository. But BUILD.bazel was also being interpreted by bazel as the BUILD file for the //third_party/name folder, which is wrong. This change renames those files to name.BUILD, a convention already being used by some packages. PiperOrigin-RevId: 409278565 Change-Id: Ib99c3474ec0b20d04cdb9d828f68c8303caec5fe
16 lines
336 B
Plaintext
16 lines
336 B
Plaintext
# Description:
|
|
# C/C++ library for conversion to/from half-precision floating-point formats
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
licenses(["notice"])
|
|
|
|
exports_files(["LICENSE"])
|
|
|
|
cc_library(
|
|
name = "FP16",
|
|
hdrs = glob(["include/**/*.h"]),
|
|
includes = ["include"],
|
|
strip_include_prefix = "include",
|
|
)
|