2022-10-25 07:23:07 -07:00
|
|
|
# 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.
|
|
|
|
|
|
|
|
# Shared CUDA/ROCM GPU kernels.
|
|
|
|
|
2023-06-22 04:56:43 -07:00
|
|
|
load("//jaxlib:jax.bzl", "cc_proto_library")
|
|
|
|
|
2022-10-25 07:23:07 -07:00
|
|
|
licenses(["notice"])
|
|
|
|
|
2023-04-19 13:26:24 -07:00
|
|
|
package(
|
|
|
|
default_applicable_licenses = [],
|
|
|
|
default_visibility = ["//:__subpackages__"],
|
|
|
|
)
|
2022-10-25 07:23:07 -07:00
|
|
|
|
|
|
|
exports_files(srcs = [
|
|
|
|
"blas.cc",
|
|
|
|
"blas_kernels.cc",
|
|
|
|
"blas_kernels.h",
|
|
|
|
"gpu_kernel_helpers.cc",
|
|
|
|
"gpu_kernel_helpers.h",
|
|
|
|
"gpu_kernels.cc",
|
|
|
|
"linalg.cc",
|
2024-07-10 12:08:30 -07:00
|
|
|
"linalg_kernels.cc",
|
|
|
|
"linalg_kernels.cu.cc",
|
|
|
|
"linalg_kernels.h",
|
2022-10-25 07:23:07 -07:00
|
|
|
"prng.cc",
|
|
|
|
"prng_kernels.cc",
|
|
|
|
"prng_kernels.cu.cc",
|
|
|
|
"prng_kernels.h",
|
2022-11-28 14:31:10 -08:00
|
|
|
"rnn.cc",
|
|
|
|
"rnn_kernels.cc",
|
|
|
|
"rnn_kernels.h",
|
2022-10-25 07:23:07 -07:00
|
|
|
"solver.cc",
|
|
|
|
"solver_kernels.cc",
|
|
|
|
"solver_kernels.h",
|
|
|
|
"sparse.cc",
|
|
|
|
"sparse_kernels.cc",
|
|
|
|
"sparse_kernels.h",
|
2023-05-24 12:09:57 -07:00
|
|
|
"triton.cc",
|
2023-07-03 06:51:45 -07:00
|
|
|
"triton_kernels.cc",
|
|
|
|
"triton_kernels.h",
|
2023-08-16 02:53:05 -07:00
|
|
|
"triton_utils.cc",
|
|
|
|
"triton_utils.h",
|
2022-10-25 07:23:07 -07:00
|
|
|
"vendor.h",
|
|
|
|
])
|
2023-06-22 04:56:43 -07:00
|
|
|
|
|
|
|
proto_library(
|
|
|
|
name = "triton_proto",
|
|
|
|
srcs = ["triton.proto"],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_proto_library(
|
|
|
|
name = "triton_cc_proto",
|
|
|
|
deps = [":triton_proto"],
|
|
|
|
)
|