Files
wehub-resource-sync 8a852e4b4e
cffconvert / validate (push) Has been skipped
License Check / license-check (push) Failing after 2s
chore: import upstream snapshot with attribution
2026-07-13 12:14:16 +08:00

20 lines
472 B
Python

load("//tensorflow:tensorflow.default.bzl", "pybind_extension")
package(
# copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
default_visibility = ["//tensorflow:__subpackages__"],
licenses = ["notice"],
)
pybind_extension(
name = "pybind_for_testing",
srcs = ["pybind_for_testing.cc"],
enable_stub_generation = True,
pytype_srcs = [
"pybind_for_testing.pyi",
],
deps = [
"@pybind11",
],
)