mirror of
https://github.com/tensorflow/tensorflow.git
synced 2024-11-21 21:05:19 +00:00
8b38fcb728
I am planning to use nanobind inside xla/python (replacing uses of pybind11), and this change adds Bazel mappings for * nanobind, and * robin_map, which is a hash map implementation used internally by nanobind. PiperOrigin-RevId: 610427944
18 lines
451 B
Plaintext
18 lines
451 B
Plaintext
licenses(["notice"])
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
cc_library(
|
|
name = "robin_map",
|
|
hdrs = [
|
|
"include/tsl/robin_growth_policy.h",
|
|
"include/tsl/robin_hash.h",
|
|
"include/tsl/robin_map.h",
|
|
"include/tsl/robin_set.h",
|
|
],
|
|
copts = ["-fexceptions"],
|
|
features = ["-use_header_modules"], # Incompatible with -fexceptions.
|
|
includes = ["."],
|
|
strip_include_prefix = "include",
|
|
)
|