Remove //jaxlib:cpu_kernels and //jaxlib:gpu_kernels forwarding Bazel targets.

These were temporary forwarding targets that are no longer needed; use //jaxlib/cpu:cpu_kernels and //jaxlib/cuda:cuda_gpu_kernels instead.

PiperOrigin-RevId: 738085234
This commit is contained in:
Peter Hawkins 2025-03-18 11:38:21 -07:00 committed by jax authors
parent ee0073e605
commit 547d602760

View File

@ -281,25 +281,3 @@ nanobind_extension(
"@nanobind",
],
)
# CPU kernels
# TODO(phawkins): Remove this forwarding target.
cc_library(
name = "cpu_kernels",
visibility = ["//visibility:public"],
deps = [
"//jaxlib/cpu:cpu_kernels",
],
alwayslink = 1,
)
# TODO(phawkins): Remove this forwarding target.
cc_library(
name = "gpu_kernels",
visibility = ["//visibility:public"],
deps = [
"//jaxlib/cuda:cuda_gpu_kernels",
],
alwayslink = 1,
)