外部函数接口 (FFI)#
本教程需要 JAX v0.4.31 或更高版本。
虽然可以使用 JAX 内置的 jax.numpy
和 jax.lax
接口轻松高效地实现各种数值运算,但有时通过“外部函数接口”(FFI) 显式调用外部编译库可能很有用。当某些操作以前在优化的 C 或 CUDA 库中实现,并且直接使用 JAX 重新实现这些计算很麻烦时,这尤其有用,但它也可以用于优化 JAX 程序的运行时或内存性能。话虽如此,FFI 通常应该被视为最后的手段,因为位于后端的 XLA 编译器或提供更低级控制的 Pallas 内核语言通常会生成性能更高的代码,而开发和维护成本更低。
在考虑使用 FFI 时,需要注意的一点是,JAX 不会自动知道如何对外部函数进行微分。这意味着,如果您想在使用外部函数的同时使用 JAX 的自动微分功能,您还需要提供相关微分规则的实现。我们将在下面讨论一些可能的方法,但重要的是从一开始就指出这个限制!
JAX 的 FFI 支持分为两部分
来自 XLA 的仅限头的 C++ 库,它打包在 JAX 的 v0.4.29 版本中,或可从 openxla/xla 项目获取,以及
一个 Python 前端,可在
jax.extend.ffi
子模块中使用。
在本教程中,我们将通过一个简单的示例演示这两个组件的使用,然后讨论针对更复杂用例的更低级别的扩展。我们首先介绍 CPU 上的 FFI,并在下面讨论对 GPU 或多设备环境的泛化。
本教程附带两个补充文件
rms_norm.cc
,其中包含所有后端代码,以及CMakeLists.txt
,它告诉 CMake 如何构建代码。
一个简单的例子#
为了演示 FFI 接口的使用,我们将实现一个简单的“均方根 (RMS)”归一化函数。RMS 归一化接受一个形状为 \( (N, ) \) 的数组 \( x \) 并返回
其中 \( \epsilon \) 是用于数值稳定性的调整参数。
这是一个有点愚蠢的例子,因为它可以使用 JAX 轻松实现,如下所示
import jax
import jax.numpy as jnp
def rms_norm_ref(x, eps=1e-5):
scale = jnp.sqrt(jnp.mean(jnp.square(x), axis=-1, keepdims=True) + eps)
return x / scale
但是,它只是足够不平凡,可以用于演示 FFI 的一些关键细节,同时仍然易于理解。我们将使用此参考实现来测试我们下面的 FFI 版本。
后端代码#
首先,我们需要一个在 C++ 中实现 RMS 归一化的实现,我们将使用 FFI 公开它。这并非旨在特别高效,但可以想象,如果您在 C++ 库中拥有某种新的更好的 RMS 归一化实现,它可能具有如下所示的接口。因此,以下是在 C++ 中实现 RMS 归一化的简单实现
#include <cmath>
#include <cstdint>
float ComputeRmsNorm(float eps, int64_t size, const float *x, float *y) {
float sm = 0.0f;
for (int64_t n = 0; n < size; ++n) {
sm += x[n] * x[n];
}
float scale = 1.0f / std::sqrt(sm / float(size) + eps);
for (int64_t n = 0; n < size; ++n) {
y[n] = x[n] * scale;
}
return scale;
}
并且,对于我们的示例,这是我们希望通过 FFI 公开给 JAX 的函数。
C++ 接口#
为了将我们的库函数公开给 JAX 和 XLA,我们需要使用 xla/ffi/api
目录中仅限头的库提供的 API 编写一个薄包装器 XLA 项目。有关此接口的更多信息,请查看 XLA 自定义调用文档。完整的源代码清单可以从 此处 下载,但关键的实现细节在下面复制
#include <functional>
#include <numeric>
#include <utility>
#include "xla/ffi/api/c_api.h"
#include "xla/ffi/api/ffi.h"
namespace ffi = xla::ffi;
// A helper function for extracting the relevant dimensions from `ffi::Buffer`s.
// In this example, we treat all leading dimensions as batch dimensions, so this
// function returns the total number of elements in the buffer, and the size of
// the last dimension.
template <ffi::DataType T>
std::pair<int64_t, int64_t> GetDims(const ffi::Buffer<T> &buffer) {
auto dims = buffer.dimensions();
if (dims.size() == 0) {
return std::make_pair(0, 0);
}
return std::make_pair(buffer.element_count(), dims.back());
}
// A wrapper function providing the interface between the XLA FFI call and our
// library function `ComputeRmsNorm` above. This function handles the batch
// dimensions by calling `ComputeRmsNorm` within a loop.
ffi::Error RmsNormImpl(float eps, ffi::Buffer<ffi::DataType::F32> x,
ffi::Result<ffi::Buffer<ffi::DataType::F32>> y) {
auto [totalSize, lastDim] = GetDims(x);
if (lastDim == 0) {
return ffi::Error(ffi::ErrorCode::kInvalidArgument,
"RmsNorm input must be an array");
}
for (int64_t n = 0; n < totalSize; n += lastDim) {
ComputeRmsNorm(eps, lastDim, &(x.typed_data()[n]), &(y->typed_data()[n]));
}
return ffi::Error::Success();
}
// Wrap `RmsNormImpl` and specify the interface to XLA. If you need to declare
// this handler in a header, you can use the `XLA_FFI_DECLASE_HANDLER_SYMBOL`
// macro: `XLA_FFI_DECLASE_HANDLER_SYMBOL(RmsNorm)`.
XLA_FFI_DEFINE_HANDLER_SYMBOL(
RmsNorm, RmsNormImpl,
ffi::Ffi::Bind()
.Attr<float>("eps")
.Arg<ffi::Buffer<ffi::DataType::F32>>() // x
.Ret<ffi::Buffer<ffi::DataType::F32>>() // y
);
从底部开始,我们使用 XLA 提供的宏 XLA_FFI_DEFINE_HANDLER_SYMBOL
生成一些样板,这些样板将扩展到一个名为 RmsNorm
的函数,该函数具有适当的签名。但是,这里的重要内容都在调用 ffi::Ffi::Bind()
中,我们在这里定义输入和输出类型,以及任何参数的类型。
然后,在 RmsNormImpl
中,我们接受 ffi::Buffer
参数,其中包含有关缓冲区形状的信息以及指向底层数据的指针。在此实现中,我们将缓冲区的全部前导维度视为批次维度,并在最后一个轴上执行 RMS 归一化。 GetDims
是一个辅助函数,提供了对这种批处理行为的支持。我们将在 下面 更详细地讨论这种批处理行为,但总体思路是,它可能有助于透明地处理输入参数中最左边的维度的批处理。在本例中,我们将除最后一个轴以外的所有轴都视为批次维度,但其他外部函数可能需要不同数量的非批次维度。
构建和注册 FFI 处理程序#
现在我们已经实现了最小的 FFI 包装器,我们需要将此函数(RmsNorm
)公开给 Python。在本教程中,我们将 RmsNorm
编译成一个共享库,并使用 ctypes 加载它,但另一个常见的模式是使用 nanobind 或 pybind11,如下面所述。
为了编译共享库,我们在这里使用 CMake,但您应该能够使用您喜欢的构建系统而不会遇到太多麻烦。完整的 CMakeLists.txt
可以从 此处 下载。
!cmake -DCMAKE_BUILD_TYPE=Release -B ffi/_build ffi
!cmake --build ffi/_build
!cmake --install ffi/_build
显示代码单元格输出
-- The CXX compiler identification is GNU 11.4.0
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Found Python: /home/docs/checkouts/readthedocs.org/user_builds/jax/envs/latest/bin/python3.10 (found suitable version "3.10.14", minimum required is "3.8") found components: Interpreter Development.Module
-- XLA include directory: /home/docs/checkouts/readthedocs.org/user_builds/jax/envs/latest/lib/python3.10/site-packages/jaxlib/include
-- Configuring done (5.0s)
-- Generating done (0.0s)
-- Build files have been written to: /home/docs/checkouts/readthedocs.org/user_builds/jax/checkouts/latest/docs/ffi/_build
[ 50%] Building CXX object CMakeFiles/rms_norm.dir/rms_norm.cc.o
In file included from /home/docs/checkouts/readthedocs.org/user_builds/jax/checkouts/latest/docs/ffi/rms_norm.cc:24:
/home/docs/checkouts/readthedocs.org/user_builds/jax/envs/latest/lib/python3.10/site-packages/jaxlib/include/xla/ffi/api/ffi.h:483:68: warning: ‘always_inline’ function might not be inlinable []8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wattributes-Wattributes]8;;]
483 | _ATTRIBUTE_ALWAYS_INLINE std::optional<Buffer<dtype, rank>> DecodeBuffer(
| ^~~~~~~~~~~~
In file included from /home/docs/checkouts/readthedocs.org/user_builds/jax/envs/latest/lib/python3.10/site-packages/jaxlib/include/xla/ffi/api/ffi.h:45,
from /home/docs/checkouts/readthedocs.org/user_builds/jax/checkouts/latest/docs/ffi/rms_norm.cc:24:
/home/docs/checkouts/readthedocs.org/user_builds/jax/envs/latest/lib/python3.10/site-packages/jaxlib/include/xla/ffi/api/api.h: In function ‘std::ostream& operator<<(std::ostream&, XLA_FFI_ExecutionStage)’:
/home/docs/checkouts/readthedocs.org/user_builds/jax/envs/latest/lib/python3.10/site-packages/jaxlib/include/xla/ffi/api/api.h:170:1: warning: control reaches end of non-void function []8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wreturn-type-Wreturn-type]8;;]
170 | }
| ^
/home/docs/checkouts/readthedocs.org/user_builds/jax/envs/latest/lib/python3.10/site-packages/jaxlib/include/xla/ffi/api/api.h: In function ‘std::ostream& operator<<(std::ostream&, XLA_FFI_AttrType)’:
/home/docs/checkouts/readthedocs.org/user_builds/jax/envs/latest/lib/python3.10/site-packages/jaxlib/include/xla/ffi/api/api.h:156:1: warning: control reaches end of non-void function []8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wreturn-type-Wreturn-type]8;;]
156 | }
| ^
/home/docs/checkouts/readthedocs.org/user_builds/jax/envs/latest/lib/python3.10/site-packages/jaxlib/include/xla/ffi/api/api.h: In function ‘std::ostream& operator<<(std::ostream&, XLA_FFI_DataType)’:
/home/docs/checkouts/readthedocs.org/user_builds/jax/envs/latest/lib/python3.10/site-packages/jaxlib/include/xla/ffi/api/api.h:143:1: warning: control reaches end of non-void function []8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wreturn-type-Wreturn-type]8;;]
143 | }
| ^
In file included from /home/docs/checkouts/readthedocs.org/user_builds/jax/checkouts/latest/docs/ffi/rms_norm.cc:24:
/home/docs/checkouts/readthedocs.org/user_builds/jax/envs/latest/lib/python3.10/site-packages/jaxlib/include/xla/ffi/api/ffi.h: In function ‘std::ostream& xla::ffi::operator<<(std::ostream&, XLA_FFI_ArgType)’:
/home/docs/checkouts/readthedocs.org/user_builds/jax/envs/latest/lib/python3.10/site-packages/jaxlib/include/xla/ffi/api/ffi.h:551:1: warning: control reaches end of non-void function []8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wreturn-type-Wreturn-type]8;;]
551 | }
| ^
/home/docs/checkouts/readthedocs.org/user_builds/jax/envs/latest/lib/python3.10/site-packages/jaxlib/include/xla/ffi/api/ffi.h: In function ‘std::ostream& xla::ffi::operator<<(std::ostream&, XLA_FFI_RetType)’:
/home/docs/checkouts/readthedocs.org/user_builds/jax/envs/latest/lib/python3.10/site-packages/jaxlib/include/xla/ffi/api/ffi.h:626:1: warning: control reaches end of non-void function []8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wreturn-type-Wreturn-type]8;;]
626 | }
| ^
[100%] Linking CXX shared library librms_norm.so
[100%] Built target rms_norm
-- Install configuration: "Release"
-- Installing: /home/docs/checkouts/readthedocs.org/user_builds/jax/checkouts/latest/docs/ffi/librms_norm.so
有了这个编译后的库,我们现在需要通过 register_ffi_target()
函数将此处理程序注册到 XLA。此函数期望我们的处理程序(指向 C++ 函数 RmsNorm
的函数指针)包装在一个 PyCapsule
中。JAX 提供了一个辅助函数 pycapsule()
来帮助实现这一点
import ctypes
from pathlib import Path
import jax.extend as jex
path = next(Path("ffi").glob("librms_norm*"))
rms_norm_lib = ctypes.cdll.LoadLibrary(path)
jex.ffi.register_ffi_target(
"rms_norm", jex.ffi.pycapsule(rms_norm_lib.RmsNorm), platform="cpu")
提示
如果您熟悉旧的“自定义调用”API,值得注意的是,您也可以使用 register_ffi_target()
通过手动指定关键字参数 api_version=0
来注册自定义调用目标。 register_ffi_target()
的默认 api_version
为 1
,即我们在这里使用的新的“类型化”FFI API。
一种替代方法:公开处理程序到 Python 的另一种常见模式是使用 nanobind 或 pybind11 来定义一个可以导入的小型 Python 扩展。对于我们这里的示例,nanobind 代码将是
#include <type_traits>
#include "nanobind/nanobind.h"
#include "xla/ffi/api/c_api.h"
namespace nb = nanobind;
template <typename T>
nb::capsule EncapsulateFfiCall(T *fn) {
// This check is optional, but it can be helpful for avoiding invalid handlers.
static_assert(std::is_invocable_r_v<XLA_FFI_Error *, T, XLA_FFI_CallFrame *>,
"Encapsulated function must be and XLA FFI handler");
return nb::capsule(reinterpret_cast<void *>(fn));
}
NB_MODULE(rms_norm, m) {
m.def("rms_norm", []() { return EncapsulateFfiCall(RmsNorm); });
}
然后,在 Python 中,我们可以使用以下命令注册此处理程序
# Assuming that we compiled a nanobind extension called `rms_norm`:
import rms_norm as rms_norm_lib
jex.ffi.register_ffi_target("rms_norm", rms_norm_lib.rms_norm(), platform="cpu")
前端代码#
现在我们已经注册了 FFI 处理程序,可以使用 ffi_call()
函数从 JAX 调用我们的 C++ 库
import numpy as np
def rms_norm(x, eps=1e-5):
# We only implemented the `float32` version of this function, so we start by
# checking the dtype. This check isn't strictly necessary because type
# checking is also performed by the FFI when decoding input and output
# buffers, but it can be useful to check types in Python to raise more
# informative errors.
if x.dtype != jnp.float32:
raise ValueError("Only the float32 dtype is implemented by rms_norm")
# In this case, the output of our FFI function is just a single array with the
# same shape and dtype as the input. We discuss a case with a more interesting
# output type below.
out_type = jax.ShapeDtypeStruct(x.shape, x.dtype)
return jex.ffi.ffi_call(
# The target name must be the same string as we used to register the target
# above in `register_custom_call_target`
"rms_norm",
out_type,
x,
# Note that here we're use `numpy` (not `jax.numpy`) to specify a dtype for
# the attribute `eps`. Our FFI function expects this to have the C++ `float`
# type (which corresponds to numpy's `float32` type), and it must be a
# static parameter (i.e. not a JAX array).
eps=np.float32(eps),
# The `vectorized` parameter controls this function's behavior under `vmap`
# as discussed below.
vectorized=True,
)
# Test that this gives the same result as our reference implementation
x = jnp.linspace(-0.5, 0.5, 15).reshape((3, 5))
np.testing.assert_allclose(rms_norm(x), rms_norm_ref(x), rtol=1e-5)
此代码单元格包含许多内联注释,这些注释应该解释了这里发生的大部分情况,但有一些要点值得明确强调。这里的大部分工作是由 ffi_call()
函数完成的,该函数告诉 JAX 如何为特定的一组输入调用外部函数。需要注意的是,ffi_call()
的第一个参数必须是一个字符串,该字符串与我们在上面调用 register_custom_call_target
时使用的目标名称匹配。
任何属性(使用上面的 C++ 包装器中的 Attr
定义)都应作为关键字参数传递给 ffi_call()
。请注意,我们显式地将 eps
转换为 np.float32
,因为我们的 FFI 库期望一个 C float
,我们不能在这里使用 jax.numpy
,因为这些参数必须是静态参数。
ffi_call()
的 vectorized
参数定义了此 FFI 调用如何与 vmap()
相互作用,如下一节所述。
提示
如果您熟悉早期的“自定义调用”接口,您可能会惊讶地发现,我们没有将问题维度(批次大小等)作为参数传递给 ffi_call()
。在早期的 API 中,后端没有接收有关输入数组的元数据的机制,但由于 FFI 在 Buffer
对象中包含维度信息,因此我们不再需要在降低时使用 Python 计算它。此更改的一大好处是 ffi_call()
可以开箱即用地支持一些简单的 vmap()
语义,如下一节所述。
使用 vmap
进行批处理#
ffi_call()
的所有用法都支持开箱即用的 vmap()
,但此实现不一定非常高效。默认情况下,当 vmap
时,ffi_call
将被重写为一个 scan()
,其中 ffi_call
在函数体中。此默认实现是通用的,但它不能很好地并行化。但是,许多 FFI 调用提供更有效的批处理行为,在一些简单的情况下,ffi_call()
的 vectorized
参数可用于公开更好的实现。
使用 vectorized
参数所需的特定假设是输入的所有前导维度应被视为批处理轴。另一种说法是,对批处理输入调用 ffi_call
的结果假定等于将 ffi_call
重复应用于批处理输入中的每个元素的结果进行堆叠,大致如下
ffi_call(xs) == jnp.stack([ffi_call(x) for x in xs])
我们对 rms_norm
的实现具有适当的语义,并且它支持开箱即用的 vmap
,其中 vectorized=True
np.testing.assert_allclose(jax.vmap(rms_norm)(x), jax.vmap(rms_norm_ref)(x), rtol=1e-5)
我们可以检查 rms_norm
的 jaxpr 的 vmap()
以确认它没有使用 scan()
进行重写
jax.make_jaxpr(jax.vmap(rms_norm))(x)
{ lambda ; a:f32[3,5]. let
b:f32[3,5] = ffi_call[
eps=1e-05
result_avals=(ShapedArray(float32[3,5]),)
target_name=rms_norm
vectorized=True
] a
in (b,) }
如果 vectorized
为 False
或被省略,则对 ffi_call
进行 vmap
将回退到一个 jax.lax.scan()
,其中 ffi_call
在函数体中
def rms_norm_not_vectorized(x, eps=1e-5):
return jex.ffi.ffi_call(
"rms_norm",
jax.ShapeDtypeStruct(x.shape, x.dtype),
x,
eps=np.float32(eps),
vectorized=False, # This is the default behavior
)
jax.make_jaxpr(jax.vmap(rms_norm_not_vectorized))(x)
{ lambda ; a:f32[3,5]. let
b:f32[3,5] = scan[
_split_transpose=False
jaxpr={ lambda ; c:f32[5]. let
d:f32[5] = ffi_call[
eps=1e-05
result_avals=(ShapedArray(float32[5]),)
target_name=rms_norm
vectorized=False
] c
in (d,) }
length=3
linear=(False,)
num_carry=0
num_consts=0
reverse=False
unroll=1
] a
in (b,) }
如果您的外部函数提供了一个此简单的 vectorized
参数不支持的高效批处理规则,您也可以使用实验性的 custom_vmap
接口来定义更灵活的自定义 vmap
规则,但在 JAX 问题跟踪器 上打开一个描述您用例的问题也是值得的。
微分#
与批处理不同,ffi_call()
不提供对外部函数的自动微分 (AD) 的任何默认支持。就 JAX 而言,外部函数是一个黑盒,无法对其进行检查以确定微分时的适当行为。因此,定义自定义导数规则是 ffi_call()
用户的责任。
有关自定义导数规则的更多详细信息,请参见 自定义导数教程,但用于实现外部函数微分的最常见模式是定义一个 custom_vjp()
,它本身调用一个外部函数。在这种情况下,我们实际上定义了两个新的 FFI 调用
rms_norm_fwd
返回两个输出:(a)“原始”结果,以及 (b) 用于反向传递的“残差”。rms_norm_bwd
获取残差和输出余切,并返回输入余切。
我们不会详细介绍 RMS 归一化反向传递,但请查看 C++ 源代码 以了解这些函数如何在后端实现。这里要强调的主要观点是,计算的“残差”与原始输出具有不同的形状,因此,在对 res_norm_fwd
进行 ffi_call()
中,输出类型有两个具有不同形状的元素。
此自定义导数规则可以按如下方式连接
jex.ffi.register_ffi_target(
"rms_norm_fwd", jex.ffi.pycapsule(rms_norm_lib.RmsNormFwd), platform="cpu"
)
jex.ffi.register_ffi_target(
"rms_norm_bwd", jex.ffi.pycapsule(rms_norm_lib.RmsNormBwd), platform="cpu"
)
def rms_norm_fwd(x, eps=1e-5):
y, res = jex.ffi.ffi_call(
"rms_norm_fwd",
(
jax.ShapeDtypeStruct(x.shape, x.dtype),
jax.ShapeDtypeStruct(x.shape[:-1], x.dtype),
),
x,
eps=np.float32(eps),
vectorized=True,
)
return y, (res, x)
def rms_norm_bwd(eps, res, ct):
del eps
res, x = res
assert res.shape == ct.shape[:-1]
assert x.shape == ct.shape
return (
jex.ffi.ffi_call(
"rms_norm_bwd",
jax.ShapeDtypeStruct(ct.shape, ct.dtype),
res,
x,
ct,
vectorized=True,
),
)
rms_norm = jax.custom_vjp(rms_norm, nondiff_argnums=(1,))
rms_norm.defvjp(rms_norm_fwd, rms_norm_bwd)
# Check that this gives the right answer when compared to the reference version
ct_y = jnp.ones_like(x)
np.testing.assert_allclose(
jax.vjp(rms_norm, x)[1](ct_y), jax.vjp(rms_norm_ref, x)[1](ct_y), rtol=1e-5
)
此时,我们可以将新的 rms_norm
函数透明地用于许多 JAX 应用程序,并且它将在标准 JAX 函数转换(如 vmap()
和 grad()
)下适当转换。此示例不支持的一件事是前向模式 AD(例如,jax.jvp()
),因为 custom_vjp()
仅限于反向模式。JAX 目前没有公开 API 用于同时自定义前向模式和反向模式 AD,但这样的 API 正在路线图中,因此如果您在实践中遇到此限制,请 打开一个问题 描述您的用例。
此示例不支持的另一个 JAX 功能是高阶 AD。可以通过将上面的 res_norm_bwd
函数包装在 jax.custom_jvp()
或 jax.custom_vjp()
装饰器中来解决此问题,但我们不会在此处详细介绍这种高级用例。
GPU 上的 FFI 调用#
到目前为止,我们只与在 CPU 上运行的外部函数交互,但 JAX 的 FFI 也支持调用 GPU 代码。由于此文档页面是在没有访问 GPU 的机器上自动生成的,因此我们无法在此处执行任何特定于 GPU 的示例,但我们将讨论要点。
在为 CPU 定义 FFI 包装器时,我们使用的函数签名为
ffi::Error RmsNormImpl(float eps, ffi::Buffer<ffi::DataType::F32> x,
ffi::Result<ffi::Buffer<ffi::DataType::F32>> y)
要将其更新为与 CUDA 内核交互,此签名变为
ffi::Error RmsNormImpl(cudaStream_t stream, float eps,
ffi::Buffer<ffi::DataType::F32> x,
ffi::Result<ffi::Buffer<ffi::DataType::F32>> y)
并且处理程序定义更新为在其绑定中包含一个 Ctx
XLA_FFI_DEFINE_HANDLER(
RmsNorm, RmsNormImpl,
ffi::Ffi::Bind()
.Ctx<ffi::PlatformStream<cudaStream_t>>()
.Attr<float>("eps")
.Arg<ffi::Buffer<ffi::DataType::F32>>() // x
.Ret<ffi::Buffer<ffi::DataType::F32>>() // y
);
然后,RmsNormImpl
可以使用 CUDA 流来启动 CUDA 内核。
在前端,注册代码将更新为指定适当的平台
jex.ffi.register_ffi_target(
"rms_norm_cuda", rms_norm_lib_cuda.rms_norm(), platform="CUDA"
)
支持多个平台#
为了支持在 GPU 和 CPU 上运行 rms_norm
函数,我们可以将上面的实现与 jax.lax.platform_dependent()
函数结合起来
def rms_norm_cross_platform(x, eps=1e-5):
assert x.dtype == jnp.float32
out_type = jax.ShapeDtypeStruct(x.shape, x.dtype)
def impl(target_name):
return lambda x: jex.ffi.ffi_call(
target_name,
out_type,
x,
eps=np.float32(eps),
vectorized=True,
)
return jax.lax.platform_dependent(x, cpu=impl("rms_norm"), cuda=impl("rms_norm_cuda"))
np.testing.assert_allclose(rms_norm_cross_platform(x), rms_norm_ref(x), rtol=1e-5)
此版本的函数将根据运行时平台调用相应的 FFI 目标。
顺便说一句,值得注意的是,虽然 jaxpr 和降低的 HLO 都包含对这两个 FFI 目标的引用
jax.make_jaxpr(rms_norm_cross_platform)(x)
{ lambda ; a:f32[3,5]. let
b:i32[] = platform_index[has_default=False platforms=(('cpu',), ('cuda',))]
c:i32[] = clamp 0 b 1
d:f32[3,5] = cond[
branches=(
{ lambda ; e:f32[3,5]. let
f:f32[3,5] = ffi_call[
eps=1e-05
result_avals=(ShapedArray(float32[3,5]),)
target_name=rms_norm
vectorized=True
] e
in (f,) }
{ lambda ; g:f32[3,5]. let
h:f32[3,5] = ffi_call[
eps=1e-05
result_avals=(ShapedArray(float32[3,5]),)
target_name=rms_norm_cuda
vectorized=True
] g
in (h,) }
)
] c a
in (d,) }
print(jax.jit(rms_norm_cross_platform).lower(x).as_text().strip())
module @jit_rms_norm_cross_platform attributes {mhlo.num_partitions = 1 : i32, mhlo.num_replicas = 1 : i32} {
func.func public @main(%arg0: tensor<3x5xf32> {mhlo.layout_mode = "default"}) -> (tensor<3x5xf32> {jax.result_info = "", mhlo.layout_mode = "default"}) {
%c = stablehlo.constant dense<0> : tensor<i32>
%c_0 = stablehlo.constant dense<0> : tensor<i32>
%c_1 = stablehlo.constant dense<1> : tensor<i32>
%0 = stablehlo.clamp %c_0, %c, %c_1 : tensor<i32>
%1 = "stablehlo.case"(%0) ({
%2 = stablehlo.custom_call @rms_norm(%arg0) {backend_config = "", mhlo.backend_config = {eps = 9.99999974E-6 : f32}, operand_layouts = [dense<[1, 0]> : tensor<2xindex>], result_layouts = [dense<[1, 0]> : tensor<2xindex>]} : (tensor<3x5xf32>) -> tensor<3x5xf32>
stablehlo.return %2 : tensor<3x5xf32>
}, {
%2 = stablehlo.custom_call @rms_norm_cuda(%arg0) {backend_config = "", mhlo.backend_config = {eps = 9.99999974E-6 : f32}, operand_layouts = [dense<[1, 0]> : tensor<2xindex>], result_layouts = [dense<[1, 0]> : tensor<2xindex>]} : (tensor<3x5xf32>) -> tensor<3x5xf32>
stablehlo.return %2 : tensor<3x5xf32>
}) : (tensor<i32>) -> tensor<3x5xf32>
return %1 : tensor<3x5xf32>
}
}
但当函数编译时,已选择相应的 FFI
print(jax.jit(rms_norm_cross_platform).lower(x).as_text(dialect="hlo").strip())
HloModule jit_rms_norm_cross_platform, entry_computation_layout={(f32[3,5]{1,0})->f32[3,5]{1,0}}, frontend_attributes={xla.sdy.meshes={}}
ENTRY main.3 {
Arg_0.1 = f32[3,5]{1,0} parameter(0)
ROOT custom-call.2 = f32[3,5]{1,0} custom-call(Arg_0.1), custom_call_target="rms_norm", operand_layout_constraints={f32[3,5]{1,0}}, api_version=API_VERSION_TYPED_FFI
}
并且使用 jax.lax.platform_dependent()
不会产生任何运行时开销,并且已编译的程序不会包含对不可用 FFI 目标的任何引用。
高级主题#
本教程涵盖了使用 JAX 的 FFI 运行和运行所需的绝大多数基本步骤,但高级用例可能需要更多功能。我们将把这些主题留到以后的教程中,但这里有一些可能有用参考
支持多个数据类型:在本教程的示例中,我们仅限于仅支持
float32
输入和输出,但许多用例需要支持多种不同的输入类型。一种处理方法是为所有支持的输入类型注册不同的 FFI 目标,然后使用 Python 根据输入类型为jax.extend.ffi.ffi_call()
选择适当的目标。但是,这种方法可能会很快变得难以处理,具体取决于支持的情况的组合。因此,也可以定义 C++ 处理程序以接受ffi::AnyBuffer
而不是ffi::Buffer<Dtype>
。然后,输入缓冲区将包含一个element_type()
方法,该方法可用于在后端定义适当的数据类型调度逻辑。分片:在使用 JAX 的自动数据相关并行性 within
jit()
时,使用ffi_call()
实现的 FFI 调用没有足够的信息进行适当的分片,因此会导致将输入的副本复制到所有设备上,并且 FFI 调用会在每个设备上的完整数组上执行。为了解决这个限制,您可以使用shard_map()
或custom_partitioning()
。有状态的外部函数:也可以使用 FFI 来包装具有关联状态的函数。在 XLA 测试套件中有一个 低级示例,未来的教程将包含更多详细信息。