From 547d602760595429b2fccb1287a5615d2d004fb2 Mon Sep 17 00:00:00 2001 From: Peter Hawkins Date: Tue, 18 Mar 2025 11:38:21 -0700 Subject: [PATCH] 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 --- jaxlib/BUILD | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/jaxlib/BUILD b/jaxlib/BUILD index 93c2b483c..a61bf7c88 100644 --- a/jaxlib/BUILD +++ b/jaxlib/BUILD @@ -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, -)