mirror of
https://github.com/ROCm/jax.git
synced 2025-04-16 20:06:05 +00:00
113 lines
2.6 KiB
Python
113 lines
2.6 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_visibility = ["//:__subpackages__"])
|
|
|
|
# LAPACK
|
|
|
|
cc_library(
|
|
name = "lapack_kernels",
|
|
srcs = ["lapack_kernels.cc"],
|
|
hdrs = ["lapack_kernels.h"],
|
|
deps = [
|
|
"@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",
|
|
],
|
|
features = ["-use_header_modules"],
|
|
module_name = "_lapack",
|
|
deps = [
|
|
":lapack_kernels",
|
|
"//jaxlib:kernel_pybind11_helpers",
|
|
"@pybind11",
|
|
],
|
|
)
|
|
|
|
# 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///service:custom_call_status",
|
|
"@ducc",
|
|
"@flatbuffers//:runtime_cc",
|
|
],
|
|
)
|
|
|
|
pybind_extension(
|
|
name = "_ducc_fft",
|
|
srcs = ["ducc_fft.cc"],
|
|
copts = [
|
|
"-fexceptions",
|
|
"-fno-strict-aliasing",
|
|
],
|
|
features = ["-use_header_modules"],
|
|
module_name = "_ducc_fft",
|
|
deps = [
|
|
":ducc_fft_flatbuffers_cc",
|
|
":ducc_fft_kernels",
|
|
"//jaxlib:kernel_pybind11_helpers",
|
|
"@flatbuffers//:runtime_cc",
|
|
"@pybind11",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "cpu_kernels",
|
|
srcs = ["cpu_kernels.cc"],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
":ducc_fft_kernels",
|
|
":lapack_kernels",
|
|
":lapack_kernels_using_lapack",
|
|
"@xla///service:custom_call_target_registry",
|
|
],
|
|
alwayslink = 1,
|
|
)
|