kse-01/tensorflow/third_party/FP16/BUILD.bazel
github-classroom[bot] 05b050893c
Initial commit
2023-10-09 11:37:31 +00:00

16 lines
336 B
Python

# 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",
)