mirror of
https://github.com/ROCm/jax.git
synced 2025-04-17 04:16:07 +00:00

The backend support for the new custom call was added on June 28th. Also add backwards compatibility test for the new custom call. PiperOrigin-RevId: 658011228
45 lines
1.3 KiB
C++
45 lines
1.3 KiB
C++
/* Copyright 2019 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
|
|
|
|
http://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.
|
|
==============================================================================*/
|
|
|
|
#include "nanobind/nanobind.h"
|
|
#include "jaxlib/gpu/prng_kernels.h"
|
|
#include "jaxlib/kernel_nanobind_helpers.h"
|
|
|
|
namespace jax {
|
|
namespace JAX_GPU_NAMESPACE {
|
|
namespace {
|
|
|
|
namespace nb = nanobind;
|
|
|
|
std::string BuildThreeFry2x32Descriptor(std::int64_t n) {
|
|
return PackDescriptorAsString(ThreeFry2x32Descriptor{n});
|
|
}
|
|
nb::dict Registrations() {
|
|
nb::dict dict;
|
|
dict[JAX_GPU_PREFIX "_threefry2x32_ffi"] =
|
|
EncapsulateFfiHandler(ThreeFry2x32Ffi);
|
|
// TODO(b/338022728): remove after 6 months
|
|
dict[JAX_GPU_PREFIX "_threefry2x32"] = EncapsulateFunction(ThreeFry2x32);
|
|
return dict;
|
|
}
|
|
|
|
NB_MODULE(_prng, m) {
|
|
m.def("registrations", &Registrations);
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace JAX_GPU_NAMESPACE
|
|
} // namespace jax
|