Shashank Viswanadha 350b7c56b8 Add python stub files for jaxlib/cpu C++ Python extensions.
PiperOrigin-RevId: 585990748
2023-11-28 08:45:24 -08:00

124 lines
2.9 KiB
Python

# Copyright 2018 The JAX Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# JAX is Autograd and XLA
load(
"//jaxlib:jax.bzl",
"flatbuffer_cc_library",
"pybind_extension",
)
licenses(["notice"])
package(
default_applicable_licenses = [],
default_visibility = ["//:__subpackages__"],
)
# LAPACK
cc_library(
name = "lapack_kernels",
srcs = ["lapack_kernels.cc"],
hdrs = ["lapack_kernels.h"],
deps = [
"@xla//xla/service:custom_call_status",
"@com_google_absl//absl/base:dynamic_annotations",
],
)
cc_library(
name = "lapack_kernels_using_lapack",
srcs = ["lapack_kernels_using_lapack.cc"],
deps = [":lapack_kernels"],
alwayslink = 1,
)
pybind_extension(
name = "_lapack",
srcs = ["lapack.cc"],
copts = [
"-fexceptions",
"-fno-strict-aliasing",
],
enable_stub_generation = True,
features = ["-use_header_modules"],
module_name = "_lapack",
pytype_srcs = [
"_lapack.pyi",
],
deps = [
":lapack_kernels",
"//jaxlib:kernel_nanobind_helpers",
"@nanobind",
],
)
# DUCC (CPU FFTs)
flatbuffer_cc_library(
name = "ducc_fft_flatbuffers_cc",
srcs = ["ducc_fft.fbs"],
)
cc_library(
name = "ducc_fft_kernels",
srcs = ["ducc_fft_kernels.cc"],
hdrs = ["ducc_fft_kernels.h"],
copts = ["-fexceptions"], # DUCC may throw.
features = ["-use_header_modules"],
deps = [
":ducc_fft_flatbuffers_cc",
"@xla//xla/service:custom_call_status",
"@com_github_google_flatbuffers//:flatbuffers",
"@ducc//:fft",
],
)
pybind_extension(
name = "_ducc_fft",
srcs = ["ducc_fft.cc"],
copts = [
"-fexceptions",
"-fno-strict-aliasing",
],
enable_stub_generation = True,
features = ["-use_header_modules"],
module_name = "_ducc_fft",
pytype_srcs = [
"_ducc_fft.pyi",
],
deps = [
":ducc_fft_flatbuffers_cc",
":ducc_fft_kernels",
"//jaxlib:kernel_nanobind_helpers",
"@com_github_google_flatbuffers//:flatbuffers",
"@nanobind",
],
)
cc_library(
name = "cpu_kernels",
srcs = ["cpu_kernels.cc"],
visibility = ["//visibility:public"],
deps = [
":ducc_fft_kernels",
":lapack_kernels",
":lapack_kernels_using_lapack",
"@xla//xla/service:custom_call_target_registry",
],
alwayslink = 1,
)