jax.Array.astype#
- abstract Array.astype(dtype, copy=False, device=None)[源]#
复制数组并转换为指定的数据类型。
这是通过
jax.lax.convert_element_type()
实现的,其行为可能与numpy.ndarray.astype()
在某些情况下略有不同。特别是,浮点数到整数和整数到浮点数转换的细节是依赖于实现的。
复制数组并转换为指定的数据类型。
这是通过 jax.lax.convert_element_type()
实现的,其行为可能与 numpy.ndarray.astype()
在某些情况下略有不同。特别是,浮点数到整数和整数到浮点数转换的细节是依赖于实现的。